Tagged Questions
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.
172
votes
8answers
81k views
Activity restart on rotation Android
In my Android application, when I rotate the device (slide out the keyboard) then my activity is restarted (onCreate is called). Now, this is probably how it's supposed to be, but I do a lot of ...
88
votes
14answers
94k views
Android: Strange out of memory issue
I am not sure where to start to explain this one.
I have a list view with a couple image buttons on each row. When you click the list row, it launches a new activity. If you review some of my other ...
88
votes
10answers
12k 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 ...
47
votes
2answers
79k views
Using Intent in an Android application to show another activity
In my Android application, I have two activity classes. I have a button on the first one and I want to show the second when it is clicked, but I get an error. Here are the classes:
public class ...
45
votes
5answers
32k views
How to disable orientation change in Android?
I have an application that I just would like to use in portrait mode, so I have defined
android:screenOrientation="portrait" in the manifest XML. This works OK for the HTC magic phone (and prevents ...
43
votes
5answers
27k views
How to create Transparent Activity in Android?
I want to create a transparent Activity on top of another activity.
How can I achieve this?
37
votes
8answers
38k views
How to send an object from one Android Activity to another using Intents?
How can I pass an object of a custom type from one Activity to another using the putExtra() method of the class Intent?
36
votes
1answer
25k views
Android: Capturing the return of an activity
I have a question regarding launching new activities. It boils down to this.
I have 3 tabs on a view
A) contains gMap activity
B) camera activity
C) some random text fields.
Requirement is that ...
33
votes
4answers
22k views
Best way to add Activity to an Android project in Eclipse?
When adding an activity to an existing Android project, I manually create a new class - is that the best / preferred way? How do others handle that?
25
votes
2answers
17k views
How to provide animation when calling another activity in Android?
I have two Activities A and B. I want to have the shrink Animation when
Activity A calls B and maximize animation when Activity B calls A. I don't need the animation xml files for this.
When we call ...
22
votes
1answer
7k views
Using the camera activity in Android
If you want to use the built-in camera activity which uses the native Android camera, simply do the following.
Intent camera = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
...
22
votes
6answers
42k views
How to use activity indicator view on iPhone?
An activity indicator view is useful in many applications.
Any ideas about how to add, activiate and dismiss an activity indicator view on iPhone?
All the methods for this are welcomed here.
20
votes
1answer
3k views
Android Compatibility Package doesn't include Activity.getFragmentManager()
I started trying to add fragments to my Android app, which is based on 2.1, using the Android Compatibility Package that just came out on March 3rd. I included the library into my project, and ...
18
votes
2answers
2k views
How to prevent Custom Views from losing state across screen orientation changes
I've successfully implemented onRetainNonConfigurationInstance() for my main activity to save and restore certain critical components across screen orientation changes.
But it seems, my custom views ...
18
votes
3answers
5k 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: ...
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
4answers
16k views
How do I restart an Android Activity
How do I restart an Android Activity? I tried the following, but the activity simply quits.
public static void restartActivity(Activity act){
Intent intent=new Intent();
...
16
votes
15answers
58k views
Close application?
I've two different activities. The first launches the second one. In the second activity I call System.exit(0) in order to force the application to close but the first activity is automatically ...
15
votes
1answer
12k views
Android Activity as a dialog
I have Activity named whereActity which is having child dialogs as well.
now i want to display this activity is as a dialog for another activity..
how can i do that ??
14
votes
6answers
17k 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 ...
13
votes
3answers
649 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 ...
13
votes
5answers
16k views
Activity transition in Android
Is it possible to define the transition between two activities for Android 1.5 and better? I would like an activity to fade in.
13
votes
4answers
6k 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?
13
votes
2answers
1k 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 ...
12
votes
2answers
251 views
Android lifecycle weirdness with singleTop and foreground service?
Here's the scenario:
Start Activity A
Activity A starts service S
Service S runs in foreground mode and shows up a notification which when pressed takes the user to Activity B (which has ...
12
votes
1answer
16k 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 ...
12
votes
4answers
10k 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 ...
11
votes
3answers
248 views
Simulating activity death in Android
We know that when the system runs out of resources, an activity in background serializes its state and gets killed by the OS. When we resume it, the OS recovers the activity state by ...
11
votes
5answers
904 views
testing that an activity called setResult
I'm writing tests for an activity (my test class extends ActivityInstrumentationTestCase2), I've got some basic tests written and working fine.
However my activity when it completes returns extra ...
11
votes
4answers
18k 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 ...
11
votes
3answers
4k 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 ...
11
votes
5answers
19k views
how to set custom title bar TextView Value dynamically in android?
friends,
i have created custom title bar using following titlebar.xml file with code
<?xml version="1.0" encoding="utf-8"?>
<TextView
...
11
votes
2answers
7k 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?
...
10
votes
9answers
1k 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 ...
10
votes
2answers
5k 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, ...
10
votes
5answers
14k 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:
...
9
votes
5answers
530 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.
9
votes
3answers
4k views
Android - Fadeout animation for splash screen
I want to add fadeout animation for my splash screen, that is while closing the splash screen I want to bring the fadeout animation effect.
Here are the codes which I have tried.
...
9
votes
2answers
8k 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 ...
9
votes
3answers
639 views
Database Access in Android
I am creating an android app that is basically a listing of information on Mushrooms. I get this information from an sqlite database. I have a global singleton with a services class inside it in ...
9
votes
2answers
18k 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 ...
9
votes
1answer
4k 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 ...
9
votes
3answers
2k views
how can you tell when an Android activity is finished loading?
I'm in the process of working on an automated test suite for our android app, and running into trouble waiting for activities to fully load. I can call getActivity, but just because it shows the ...
9
votes
4answers
6k views
How to use an intent to update an activity?
I have a service that is downloading a file. When the download is done, I would like to update my "Downloaded files" list in my Activity, but only if the Activity is running. I do not want the ...
8
votes
2answers
79 views
Why is it possible to write a boolean array to a parcel but not a boolean?
In the documentation for the Parcel it states a method exists
public final void writeBooleanArray (boolean[] val)
But there is no method for writeBoolean(boolean val)
There also exists:
public ...
8
votes
7answers
282 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 ...
8
votes
2answers
532 views
Testing that button starts an Activity with Robolectric
Hi I have the following code:
@RunWith(Test9Runner.class)
public class MainActivityTest
{
private MainActivity activity;
private Button pressMeButton;
@Before
public void setUp() ...
8
votes
3answers
8k views
onSaveInstanceState () and onRestoreInstanceState ()
I'm trying to save the state of an activity using the methods onSaveInstanceState () and onRestoreInstanceState ().
The problem is that it never enters the onRestoreInstanceState method (). Can ...
8
votes
1answer
2k views
Android Best Practice on Updating the UI from BroadcastReceiver to a certain activity
When i have a broadcastReceiver say android.intent.action.MEDIA_BUTTON and i want to update the current activity's UI without creating a new activity, is there any good practice on this one?
What i ...
8
votes
3answers
10k 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 ...