I just got a very strange problem which I have now spendt hours trying to solve. When I try to run my android app (both on my phone and in the emulator) I get nothing. The activity label from the Andr
I\'ve created a \"back to home\" type button in Android by using the code: Intent i=new Intent(this, Home.class);
I have an activity with a couple of fragments inside. I\'m using Frame Layout for each of the fragment and have Relative Layout as parent.
I want to finish all the activities which are running in the application means want to remove all the parent activit开发者_开发问答ies from stack.
I created a splash screen using the follow code: public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);
I have a fragment (F1) with a public method like this public void asd() { if (getActivity() == null) { Log.d("yes","it is null");
In my Android app, the main Activity will sometimes start a Thread to load data from a server.This thread modifies the app\'s database and edits some important files.AFAIK, it would appear that this t
I have an Android app which I use to register users on my web site. My first task is to register a user if my shared preferences file shows there is no registered user information.
I want the ability to start my activity in a new process and end the current instance of my activity in its current process.
I have an activity where it has three EditText. When I insert data in them the soft keyboard displayed and hide the rest EditTexts so i can not see what I am writin开发者_JAVA技巧g.