[android-developers] Re: Android LifeCycle and Singleton Instances

2011-06-01 Thread chandlersong
you can store the data to database or serialize the object. I guess you need keep some data or do something after app has been stopped. On 6月2日, 上午9时03分, Dianne Hackborn wrote: > If your process is killed, the next time you run a fresh process must be > created and re-initialized. There is no

[android-developers] Questions about onSaveInstanceState

2009-08-20 Thread chandlersong
protected void onSaveInstanceState(Bundle outState) { super.onSaveInstanceState(outState); outState.putStringArrayList("history", this.history); } it's my code.and this.history is an arraylist.I hope I can ge

[android-developers] question about TableLayout

2009-08-07 Thread chandlersong
http://schemas.android.com/apk/res/ android" > it's my xml config file.when I add the tableLayout into the raidogroup. I find that I can select more than one radiobutton at one time. Does anyone konw how to fixed i

[android-developers] question about KeyListener

2009-08-07 Thread chandlersong
I need to listen to user's input of a edittext. I first use KeyListener to listen.it can work,but it also eating other input.So I changed to the OnKeyListener, and it work well then I read Api about KeyListener, I find the sentence below I can't understand Calling this method will repl

[android-developers] Is there any UI can connect to SQLite database?

2009-07-31 Thread chandlersong
Is there any UI can connect to SQLite database? I hope that I can read the data without writing code.is there any method can make it happened? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Develo