Top "Android-activity" questions

Questions about creating or managing Activities in Android.

Difference between onCreate() and onStart()?

Possible Duplicate: Android Activity Life Cycle - difference between onPause() and OnStop() I was wondering - what is the difference …

android android-activity oncreate onstart
Activity, AppCompatActivity, FragmentActivity, and ActionBarActivity: When to Use Which?

I'm coming from iOS where it's easy and you simply use a UIViewController. However, in Android things seem much more …

android android-fragments android-activity android-actionbaractivity appcompatactivity
Why fragments, and when to use fragments instead of activities?

In Android API 11+, Google has released a new class called Fragment. In the videos, Google suggests that whenever possible (link1, …

android android-layout android-fragments android-activity android-3.0-honeycomb
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 …

java android android-intent android-activity android-manifest
Android ListView with onClick items

I'm a new programmer and new in Android. I'm using this example http://www.androidhive.info/2012/09/android-adding-search-functionality-to-listview/ and it works …

android listview methods android-activity elements
Prevent Android activity dialog from closing on outside touch

I have an activity that is using the Theme.Dialog style such that it is a floating window over another …

java android android-activity dialog touch
Cannot call getSupportFragmentManager() from activity

I have an activity which has a fragment. XML: <fragment android:name="com.example.androidcalculator.ResultFragment" android:id="@+id/…

android android-activity android-fragments
Soft keyboard open and close listener in an activity in Android

I have an Activity where there are 5 EditTexts. When the user clicks on the first EditText, the soft keyboard opens …

android android-activity android-edittext android-softkeyboard
How to send objects through bundle

I need to pass a reference to the class that does the majority of my processing through a bundle. The …

android serialization android-activity bundle parcelable