Activity has multiple meanings. For Android activities, use the more specific [android-activity] tag. For Windows Workflow Foundation activities, use the more specific [workflow-activity] tag.
154
votes
12answers
24k views
What's the best manner of implementing a social activity stream?
I'm interested in hearing your opinions in which is the best way of implementing a social activity stream (Facebook is the most famous example). Problems/challenges involved are:
Different types of ...
48
votes
2answers
61k views
Android - How To Override the “Back” button so it doesn't Finish() my Activity?
I currently have an Activity that when it gets displayed a Notification will also get displayed in the Notification bar.
This is so that when the User presses home and the Activity gets pushed to the ...
47
votes
3answers
24k views
Start an Activity with a parameter
I'm very new on Android development.
I want to create and start an activity to show information about a game. I show that information I need a gameId.
How can I pass this game ID to the activity? ...
44
votes
3answers
39k views
change application's starting activity - android
I have created the meat and guts of my application but I want to add a different activity that will be the starting point (sort of a log-in screen).
Couple questions:
1) I have a fairly decent handle ...
44
votes
5answers
48k views
Android: How do i pass an object from one activity to another?
I need to be able to use one object in multiple activities within my app, and it needs to be the SAME object. What is the best way to do this?
I have tried making the object "public static" so it ...
43
votes
4answers
18k views
Starting Activity from Fragment causes NullPointerException
I'm stuck here with a problem starting an activity from a Button inside a Fragment.
Here is my code:
ViewPagerAdapter.java
import java.util.List;
import android.support.v4.app.Fragment;
import ...
37
votes
4answers
54k views
Android: How can I get the current foreground activity (from a service)?
Is there a native android way to get a reference to the currently running Activity from a service?
I have a service running on the background, and I would like to update my current Activity when an ...
35
votes
10answers
25k views
Finish all previous activities
My application has the following flow
Home->screen 1->screen 2->screen 3->screen 4->screen 5
Now I have a common log out button in each screen (Home/ screen 1 / screen 2 /screen 3/ ...
33
votes
6answers
25k views
How do you check the internet connection in android?
I want to check the internet connectivity in each activity. If it is lost a message should be displayed.
Can any one guide me how to achieve this?
31
votes
11answers
21k views
Android: Clear the back stack
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);
startActivity(intent);
In B I use this code to open C:
Intent ...
30
votes
2answers
29k views
how to change title of activity in android?
i am using
Window w= getWindow();
w.setTitle("adf as afsa");
to change title of my current activity but it not seem to work..
can any one guide me how to change this?
28
votes
4answers
5k views
onActivityResult() called prematurely
I start the activity (descendant of PreferenceActivity) from my worker activity as follows:
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data)
{
...
28
votes
4answers
24k views
How can I implement a ListView without ListActivity? (use only Activity)
I'm new to Android, and I really need to do it this way (I've considered doing it in another Activity), but can anyone show me a simple code (just the onCreate method) that can do Listview without ...
28
votes
3answers
17k views
getActivity() returns null in Fragment function
I have a fragment (F1) with public method like this
public void asd(){
if(getActivity()==null){Log.d("yes","it is null");}
}
and yes when I call(from the Activity) it it is null...
...
27
votes
3answers
38k views
android start activity from service
Android:
public class LocationService extends Service {
@Override
public void onStart(Intent intent, int startId) {
super.onStart(intent, startId);
startActivity(new ...
26
votes
5answers
41k views
onSaveInstanceState () and onRestoreInstanceState ()
I'm trying to save and restore the state of an Activity using the methods onSaveInstanceState() and onRestoreInstanceState().
The problem is that it never enters the onRestoreInstanceState() method. ...
26
votes
2answers
60k views
Sending information with Intent.putExtra
I have an array of integers in the activity A:
int array[] = {1,2,3};
And i want to send that variable to the activity B, so i create a new intent and use the putExtra method:
Intent i = new ...
24
votes
3answers
33k views
How can I start an Activity from a non-Activity class?
I have a map view activity that shows a few OverlayItems. In the onTap method of an overlay, I want to trigger a new activity that shows this overlay photo as a fullscreen, for example.
When I do ...
23
votes
3answers
2k views
Activity stack ordering problem when launching application from Android app installer and from Home screen
For testing purposes only, I am allowing my app APK to be downloaded and installed via a URL. Once downloaded on the phone, it can be launched with the Android app installer which gives the user an ...
22
votes
1answer
21k views
Android singleTask or singleInstance launch mode?
I have an app that has a list as its main activity and then you can click items which opens a detailed view of that item. I also have a search activity that is similar to the main activity and works ...
22
votes
4answers
6k views
When a Fragment is replaced and put in the back stack (or removed) does it stay in memory?
Is the behavior similar to the way Activities work? For example with Activities it works like this:
Activity A starts Activity B, while B is on screen, the system is able to remove A from memory if ...
22
votes
4answers
40k views
Android: new Intent() starts new instance with android:launchMode=“singleTop”
I have Activity A with android:launchMode="singleTop" in the manifest.
If I go to Activity B, C and D there I have menu shortcuts to return to my applications root activity (A).
The code looks like ...
22
votes
10answers
6k views
Android app out of memory issues - tried everything and still at a loss
I spent 4 full days trying everything I can to figure out the memory leak in an app I'm developing, but things stopped making sense a long time ago.
The app I'm developing is of social nature, so ...
22
votes
2answers
4k views
Replace current activity
I need to replace the current activity with a new one. That is, I want to start a new activity and remove the current activity from the task stack.
Based on the documentation, it seems the best way ...
21
votes
8answers
45k views
Reload activity in Android
Is it a good practice to reload an activity in Android?
What would be the best way to do it? this.finish and then this.startActivity with the activity intent?
21
votes
4answers
16k views
Clear the entire history stack and start a new activity on Android
Is it possible to start an activity on the stack, clearing the entire history before it?
The situation
I have an activity stack that either goes A->B->C or B->C (screen A selects the users token, ...
21
votes
3answers
6k views
Unexpected resume of “package name” while already resumed in ''package name" Error in Android
If changing the orientation of my phone or the emulator I get the following output in LogCat:
04-09 11:55:26.290: INFO/WindowManager(52): Setting rotation to 1, animFlags=0
04-09 11:55:26.300: ...
20
votes
10answers
40k views
Finish parent and current activity in Android
I have 3 activities. Activity A which leads to activity B, which in turn can go back to activity A or start activity C. However, if I press back in activity C the app should close.
To sum up:
...
20
votes
1answer
14k views
Start Activity with an animation
I am trying to start an activity with a custom transition animation. The only way I have found out so far to do this (without using onPendingTransition() in the previous activity) is to use a custom ...
20
votes
3answers
10k views
Android - Activity Constructor vs onCreate
I understand that Android Activities have specific lifecycles and that onCreate should be overridden and used for initialization, but what exactly happens in the constructor? Are there any cases when ...
19
votes
5answers
10k views
How to prevent multiple instances of an activity when it is launched with different intents
I've come across a bug in my application when it is launched using the "Open" button on the android market. It seems that lauching it from the market uses a different intent then launching it from the ...
19
votes
3answers
19k views
Animation transition between activities using FLAG_ACTIVITY_CLEAR_TOP
In my android app, I'm making a method that pop all activities and bring up the first activity.
I use this code:
Intent intent = new Intent(this, MMConnection.class);
...
19
votes
2answers
7k views
Finish old activity and start a new one or vice versa
I know, that I get the same result with both code snipplets
finish();
startActivity(newActivity);
and
startActivity(newActivity);
finish();
I'd like to know your opinion, if there is a big ...
18
votes
2answers
14k views
Android - Activity vs. ListActivity - Which one should my activity class extend?
I've been learning to develop in Android and had more of a general question: If I have a layout that uses a list and some other views, should I be using Activity or ListActivity for my activity class?
...
18
votes
7answers
19k views
How to clear the Android Stack of activities?
Hi I have an application with several Activities in Android and I want the user to be able to log out by pressing a menu button. The problem I have is that A) Android doesn't let you terminate the ...
18
votes
1answer
4k views
Android Application Class Lifecycle
The android app I am working on overrides the Application class to store lightweight state (username, gps location, etc) in static vars. Most of this state is set in OnCreate of the launch activity ...
17
votes
5answers
12k views
android: notify activity from service
I'm trying to start a Service from my Activity to look out for changes on a web page, it's a private app so I don't bother the battery life...
But I'd like to pass data from my Service to my ...
17
votes
6answers
4k views
How to check if an activity is the last one in the activity stack for an application?
I want to know if user would return to the home screen if he exit the current activity.
17
votes
1answer
3k views
View activity stack in Android [closed]
Is it possible to view the activity stack in Android for debugging purposes?
17
votes
4answers
1k views
Android launches system settings instead of my app
For some reason whenever I (try to) start my app the phone decides to launch system settings instead of my "main activity". And yes, I am referring to the "Android system settings", and not something ...
17
votes
6answers
13k views
How to detect if any of my activity is front-most and visible to user?
I would like to launch an intent when any of my activity is visible, otherwise I will put it up as a notification, and will be fired by the user.
To decide this, I need to know if any of my activity ...
16
votes
3answers
37k views
Start service in android
I want to call a service when a certain activity starts. So, here's the Service class:
public class UpdaterServiceManager extends Service {
private final int UPDATE_INTERVAL = 60 * 1000;
...
16
votes
3answers
13k views
requestFeature() must be called before adding content
I am trying to implement a custom titlebar:
Here is my Helper class:
import android.app.Activity;
import android.view.Window;
public class UIHelper {
public static void setupTitleBar(Activity ...
16
votes
3answers
7k views
Stopping & Starting music on incoming calls
I have implemented an Activity that plays media from a URL in android
In order to add pause functionality when the incoming call is incoming I created a receiver that sets a a variable when the call ...
16
votes
5answers
34k views
How do you use Intent.FLAG_ACTIVITY_CLEAR_TOP to clear the Activity Stack?
I've read through several posts about using this, but must be missing something as it's not working for me. My activity A has launchmode="singleTop" in the manifest. It starts activity B, with ...
16
votes
3answers
23k views
Make Android Activity looks like dialog
I am trying to open a dialog on widget click. I have solved the problem skinning the activity started on click with android:theme="@android:style/Theme.Dialog". Unfortunately I cannot reach the same ...
16
votes
2answers
13k views
Activity idle timeout for HistoryRecord?
W/ActivityManager( 81): Launch timeout has expired, giving up wake lock!
W/ActivityManager( 81): Activity idle timeout for HistoryRecord
Does anyone know what reason would cause this happens?
...
16
votes
11answers
3k views
Activity lifecycle - receiving notification that layout is complete
I have an activity in which I have 3 buttons placed alongside each other. I have used a subclass of Button that will resize the button text to prevent the text from wrapping. I would like the 3 ...
15
votes
3answers
20k views
Difference between onCreate() and onStart()? [duplicate]
Possible Duplicate:
Android Activity Life Cycle - difference between onPause() and OnStop()
I was wondering what is the difference between onCreate() and onStart() methods?
I think that ...
15
votes
8answers
27k views
How to navigate from one screen to another screen
How to navigate from one Activity screen to another Activity screen? In the first screen I'm having one button if I click the button it has to move to another Activity screen.