[android-developers] Re: Using contacts (again)

2010-07-19 Thread ionel
Take a look on this http://www.higherpass.com/Android/Tutorials/Working-With-Android-Contacts/1/ On Jul 13, 2:32 pm, Lieuwe lieuwe.elger...@gmail.com wrote: Is it possible to create a generic android application that uses contacts (though a contentResolver) that will run on all android

[android-developers] PopupWindow can't be dismissed when press back key

2010-06-04 Thread ionel
Hi, I've created a custom PopupWindow but when I press back button, the window doesn't dissapear. If somebody found a solution please response. Thanks, Ionel. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: Scan wireless networks periodically

2010-05-28 Thread ionel
Hi, Use alarms On May 26, 8:06 pm, Charly carlos.per...@gmail.com wrote: Hi, I'm developing sort of a wireless scanner, so I need to scan every X seconds. I know I should use WifiManager and startScan() to get the networks and then register a receiver to receive the event once the scan

[android-developers] Re: New to android. Listview problem

2010-05-28 Thread ionel
Hi, Put the line setContentView(R.layout.main); after line super.onCreate(savedInstanceState); On May 26, 6:15 am, Somebodyconfused til...@jcs.k12.oh.us wrote: All, I'm trying to get the following code to work. It should just be a textview with a listview underneath it. What is going wrong?

[android-developers] Re: Twitter app's popup aligned with ListView item - how did they do it?

2010-05-27 Thread ionel
Can you put some code how you created PopupWindows? On May 21, 10:53 pm, Nerdrow troybe...@gmail.com wrote: I used the layouts, graphics, and animation from the default Contacts app, which uses separate layouts for the header, body, and footer, but you can merge them all into one.  Create a

[android-developers] SyncAdapter 2.x question

2010-05-06 Thread ionel
Can we use sync adapters for email? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: ListView/Adapter IllegalStateException

2010-04-28 Thread ionel
count. On Wed, Mar 31, 2010 at 4:35 PM, ionel ionelt2...@gmail.com wrote: I am calling notifyDataSetChanged() in update method On Mar 30, 11:36 pm, social hub shubem...@gmail.com wrote: prob u need to call notifyDataSetChanged if data is changed. See if that helps On Tue, Mar 30

[android-developers] Re: Memory profiling for my Android application

2010-04-14 Thread ionel
You can find some information here: http://groups.google.com/group/android-developers/browse_thread/thread/afd865f3eb7494ed On Apr 13, 3:29 pm, SAM gulati...@gmail.com wrote: Hi, I have a requiirement of finding out the max RAM usage of my application. I tried installing the Memory Profilers

[android-developers] Re: ListActivity and onListItemClick

2010-04-14 Thread ionel
You have conflict name between your class name and “ListView” from onListItemClick method. Change class name, import android.widget.ListView and should work On Apr 11, 1:16 am, Amon Darthir amondart...@gmail.com wrote: Hi. I am having trouble figuring out how to get my onListItemClick to work.

[android-developers] Re: ListView/Adapter IllegalStateException

2010-03-31 Thread ionel
I am calling notifyDataSetChanged() in update method On Mar 30, 11:36 pm, social hub shubem...@gmail.com wrote: prob u need to call notifyDataSetChanged if data is changed. See if that helps On Tue, Mar 30, 2010 at 3:15 PM, ionel ionelt2...@gmail.com wrote: I've implemented a custom

[android-developers] ListView/Adapter IllegalStateException

2010-03-30 Thread ionel
I've implemented a custom ListView and Adapter, and sometimes I receive IllegalStateException exception:” ERROR/AndroidRuntime(3575): java.lang.IllegalStateException: The content of the adapter has changed but ListView did not receive a notification. Make sure the content of your adapter is not