I have created a slash screen for my Android app following this tutorial. Basically it\'s just start a Thread in the onCreate() of the splash Activity, and wait for a short period of time before switc
i am newbie in android development.. i m using expandable listview, In each row of listview i have 3 textview and 1 button ,on button click
i want to callactivity B from Activity A. I want to write method in activity A in which i want to write code for calling activity B开发者_开发技巧. also for this method i want to use two array of stri
hi i am passing array of strings from activity A to Activity B. in activity B i am able to get this Array of strings within OnCreate() method .but if i use this array in a Separate class which is outs
I have 2 activities. First activity extends Activity and second extends ListActivity. I need to call ListActivity from the Activity class
I wish to find out how to switch between tabs using intents. In my case I\'m using the both tabs: Resources res = getResources();
I have a activity that displays a number of elements from a list that the user can scroll through. In addition from navigating the list for 开发者_JS百科new elements added the user can click a popup n
Hey friends, I want to know how to start a开发者_Python百科n activity on startup of the phone. ?You need to register Broadcast receiver with intent filter \"android.intent.action.BOOT_COMPLETED\"
I\'m having some problem using a ListActivity inside a TabHost. I only want to use one class to show different lists (which I manage), but the problem开发者_开发百科 is that when I click on a new tab,
In Android I have some activities, let\'s say A, B, C. In A, I use this code to open B: Intent intent = new Intent(this, B.class);