Hi, sorry for a newbie question..
but "Service" by it's defenision meaning the same as "Remote service" in Android?
and if not, what is the diffrence between them?
thanks,
moshik.
Hi,
I have preperd a remote service, i would like to know if it's possible somehow via this service to call another activities?
coz usually what ive seen so far, is how external apps calling the remote service and using it's methods, but i want vice versa.. that the remote service will call an external app's activity,
thanks,
moshik.
Hi everybody,
I'm writing an app with ListView layout and i want to add to any line
in this ListView CheckBox.
How can i do this?
This is my XML file:
Thanks
Moshik.
Hi,
I tried to understand from the api the porpese of PendingIntent, coz sometimes some method i use requires this, i still didnt get the idea right, anyone could exaplin?
why cant i juse use context?
thanks,
moshik
Hi,
i need to share data between a local service and his hosting activity,
i`am using sendBroadcast in order to send data to the hosting activity from the service,
but if i want to send data back to the service from the hosting activity?
so i though to create static method on the service, and call from the activity, and through it send the…
Hi,
iam trying to run an activity from diffrent package from my remote service:
this is how i implement the service.java
ublic class CurrencyService extends Service
{
public class CurrencyServiceImpl extends ICurrencyService.Stub
{
int CALL_PUSH_SERVICE_ACTIVITY=10;
@Override
public void callSomeActivity(int…
after calling:
bindService(new Intent(IUdpListenerService.class.getName()),
serviceConnection, Context.BIND_AUTO_CREATE);
the onServiceConnected isn't being called.
Hi,
i have two applications which i want them to share the same arraylist.
how could i achive something like that? is there anything in Android for sharing such a prefrenceses?
thanks,
hello,
ive been trying to retrive the current network type, but no success
when i say network type: i refer to know this info:
if the type is: NETWORK_TYPE_IDEN or NETWORK_TYPE_UMTS.. and so on..
i tried to use:
NetworkInfo activeNetInfo = connectivityManager.getActiveNetworkInfo();
or
NetworkInfo mobNetInfo =…