i want to call a new activity from within an inner class which is defined in d class which 开发者_StackOverflowextends Activity....
I have 2 activities declared as singleTask in my application. The reason for t开发者_运维知识库his is, with standard mode, pressing \"HOME\" in one activity (say A) and launching another (say B), stil
In my application I have a number of Activity classes. When I run on e开发者_Go百科mulator (or install to a device) a corresponding number of program shortcuts show up in the programs menu. Why does t
I need to create all the UI programmatically \"on demand\", this means I can\'t use any XML. 开发者_JAVA技巧This is the pseudo code of what I do:
I have a call blocking application. It has 3 files: class BlockMyCall e开发者_运维知识库xtends BroadcastReceiver
I have a parent activity, and a child activity that extends the parent activity. When the parent starts the child activity,
I have a TabActivity which contains an Activity. When the tab f开发者_如何学编程or the activity is selected, if I press the Menu button, onPrepareOptionsMenu is called in the parent TabActivity, but n
I\'m trying to write a game engine in Android, but I don\'t have much familiarity with threads. My thread has an attribute, mSurfaceHolder, which holds the surface that I\'ll be drawing to. The run()
In my Android app, I start a new activity with startActivityForResult(). I get the 开发者_StackOverflow社区result in onActivityResult() perfectly. My problem is that there is a small bit of data that
Is there a way that a Service can report back to the calling activity when the Service has reac开发者_如何学Gohed a particular stage of processing?