Is it possible for an Android activity to remain in memory, even after it\'s \"finished\" (e.g. a user presses the back button). And if it is, how can I debug whether thi开发者_如何学运维s is the case
After I make a call with phone call intent and finish the call, the phone opens calls log instead of directly reopen the app activity which launches the call intent.
I have a TabActivity that has a TabHost with two tabs. Each tab has its own intent. It seems like the intent\'s onResume() fires before I can detect if a tab was changed. How can I resolve this?
I am trying to figure out how to turn off the scree开发者_高级运维n from within a service. I have already read this but I am failing to realize how to do this from within a service. I don\'t really wa
I want to write an app which is consist on two major parts: 1. BroadcastReceiver that will intercept incoming SMS mess开发者_开发技巧ages and act on them.
Hi I have the following code: @RunWith(Test9Runner.class) public class MainActivityTest { private MainActivity activity;
So far, to accomplish certain functional goals, I have been getting away with handing out my app\'s main activity object as a parameter to the constructors of other classes, which then store it as a p
I am trying to write an app that starts on boot up. My receiver works and my app is started on boot up, however it crashes because of ActivityNotFoundException. I may have messed up in the manifest so
I have an application in Android, I\'ve changed the main Activity, and now nothing is showing up when I launch it. I don\'t know what could be wrong. Please help.
I have an activity that will be started from a parent activity, but the behavior of the subactivity will be determined based upon with button is clicked in the parent activity.