[android-developers] Re: Generating .jar from Android service project

2011-06-11 Thread herry
yeah,come on,have you resoved this problem? i am confuse by this too... any reply is thankful On May 31, 9:27 pm, DanielSchH dan...@schmitz-huebsch.net wrote: Hello, I have a Android Project which implements a android-service. Now I want to share this, without publishing the code. I have

[android-developers] Re: import! global roaming

2011-01-13 Thread herry
no body knows... On Jan 13, 11:00 am, herry xinwei...@gmail.com wrote: hi, all, i got a problem: when i want to figure out if the device is in global roaming or just national roaming , i found that : android only give a confused answer in TelephonyManager(isNetworkRoaming()),but i need more

[android-developers] import! global roaming

2011-01-12 Thread herry
hi, all, i got a problem: when i want to figure out if the device is in global roaming or just national roaming , i found that : android only give a confused answer in TelephonyManager(isNetworkRoaming()),but i need more information. any help is grateful. thx. -- You received this message

[android-developers] sms broascast

2010-11-05 Thread herry
hi,all. when i look up sms interception, i want to intercept android.provider.Telephony.SMS_RECEIVED broadcast,and prevents it be published to other receivers(such as system Messaging app). what can i do ? another quest: i'm confused that which app (or hardware) send out this broadcast (if

[android-developers] Re: Confusion in onItemClick and onListItemClick

2010-09-03 Thread herry
On Sep 2, 10:54 pm, Sohan badaya sohan.bad...@gmail.com wrote: Hi All, I am confused with two below method 1.)   onItemClick(AdapterView? arg0, View view, int position,long id) 2.)   onListItemClick(ListView l, View v, int position, long id) Please let me know about these two methods.

[android-developers] Re: Confusion in onItemClick and onListItemClick

2010-09-03 Thread herry
well, onListItemClick() is a convenient method of ListView(just for listview) as we know,ListView is a subclass of AdaperView ,so onItemClick() is also apply for ListView. you can call like this : getListView().setOnItemClickListener(){... implement its callback here}. it just the same result of