Fragments represent reusable behaviors or portions of user interface in an Android app.
74
votes
12answers
31k views
MapView in a Fragment (Honeycomb)
now that the final SDK is out with google apis - what is the best way to create a Fragment with a MapView? MapView needs a MapActivity to work right.
Having the Activity managing the Fragments ...
57
votes
5answers
21k views
Fragments within Fragments
I'm wondering if this is actually a bug in the Android API:
I have a setup like so:
┌----┬---------┐
| | |
| 1 | 2 |
| |┌-------┐|
| || ||
| || 3 ||
...
54
votes
6answers
21k views
Separate Back Stack for each tab in Android using Fragments
I'm trying to implement tabs for navigation in an Android app. Since TabActivity and ActivityGroup are deprecated I would like to implement it using Fragments instead.
I know how to set up one ...
13
votes
3answers
14k views
Actionbarsherlock + tabs + multi fragments?
I´ve tried so hard to get actionbarsherlock + tabs + fragments working.
I only can make this set to work as static, I would like to create this like android market app (swipe movement).
I get stuck ...
23
votes
2answers
7k views
ViewPager as a circular queue / wrapping
I am using a ViewPager with the FragmentStatePagerAdapter to allow navigation between some fragments.
Let's say I have three fragments: A, B and C. The ViewPager shows Fragment A initially, and ...
89
votes
6answers
29k views
ViewPager and fragments — what's the right way to store fragment's state?
Fragments seem to be very nice for separetion of UI logic into some modules. But along with ViewPager it's lifecycle is still misty for me. So Guru thoughts are badly needed!
Edit
See dumb solution ...
40
votes
7answers
16k views
Update data in ListFragment as part of ViewPager
I'm using the v4 compatibility ViewPager in Android. My FragmentActivity has a bunch of data which is to be displayed in different ways on different pages in my ViewPager. So far I just have 3 ...
61
votes
1answer
31k views
Android Fragments and animation
How should you implement the sort of sliding that for example the Honeycomb Gmail client uses?
Can TransactionManager handle this automatically by adding and removing the Fragments, it's kind of ...
54
votes
7answers
8k views
Complete Working Sample of the Gmail Three-Fragment Animation Scenario?
TL;DR: I am looking for a complete working sample of what I'll refer to as "the Gmail three-fragment animation" scenario. Specifically, we want to start with two fragments, like this:
Upon some UI ...
60
votes
3answers
67k views
Need a Fragments Example
First time posting on the forum. I am just taking my first look at android 3.0 and I can't find a Fragments example that I can just put into Eclipse and have it run. I usually learn quicker if I have ...
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 ...
19
votes
2answers
17k views
Android: can't replace one fragment with another
I need to replace a fragment in one activity with another fragment, below is the layer file of the activity:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
...
70
votes
5answers
21k views
How to handle button clicks using the xml onClick within Fragments
Pre-Honeycomb, each Activity was registered to handle button clicks via the onClick tag in a Layout's XML.
android:onClick="myClickMethod"
Within that method you can use view.getId() and a switch ...
23
votes
5answers
8k views
Android Activity ClassNotFoundException - tried everything
I've just refactored an app into a framework library and an application, but now when I try and start the app in the emulator I get the following error stack trace:
06-02 18:22:35.529: ...
14
votes
1answer
16k views
Creating tabs using Fragments now that TabActivity is deprecated
I am creating an application which has five tabs at the bottom of the screen, each of which opens a different Activity.
My Tab Activity extends TabActivity which I have just read is deprecated and I ...
31
votes
5answers
12k views
Display fragment viewpager within a fragment
I have a fragment which contains a ViewPager. The ViewPager is associated with an adapter that contains a set of fragments.
Upon loading the parent fragment, I am met with an IllegalStateException ...
43
votes
1answer
35k views
How do I add a Fragment to an Activity with a programmatically created content view
I want to add a Fragment to an Activity that implements its layout programatically. I looked over the Fragment documentation but there aren't many examples describing what I need. Here is the type of ...
24
votes
5answers
12k views
support FragmentPagerAdapter holds reference to old fragments
LATEST INFO:
i have narrowed my problem down to being a problem with the fragmentManager retaining instances of old fragments and my viewpager being out of sync with my FragmentManager. See this ...
34
votes
3answers
12k views
Best practice for instantiating a new Android Fragment
I am not sure how sensible this question is so I apologies up front however I know from a developer meet up tonight that I am not alone on this one.
So, I have seen two general practices to ...
23
votes
4answers
14k views
android fragment- How to save states of views in a fragment when another fragment is pushed on top of it
In android, a fragment (say FragA) gets added to the backstack and another fragment (say FragB) comes to the top. Now on hitting back FragA comes to the top and the onCreateView() is called. Now I had ...
20
votes
5answers
27k views
How to pass data between fragments
Im trying to pass data between two fragmens in my program. Its just a simple string that is stored in the List. The List is made public in fragments A, and when the user clicks on a list item, I need ...
11
votes
6answers
4k views
Retrieve a Fragment from a ViewPager
I'm using a ViewPager together with a FragmentStatePagerAdapter to host three different fragments:
[Fragment1]
[Fragment2]
[Fragment3]
When I want to get Fragment1 from the ViewPager in the ...
15
votes
2answers
6k views
Why use Fragment#setRetainInstance(boolean)?
I find Fragment#setRetainInstance(true) confusing. Here is the Javadoc, extracted from the Android Developer API:
public void setRetainInstance (boolean retain)
Control whether a fragment ...
34
votes
4answers
16k views
Fragments in Android 2.2.1, 2.3, 2.0. Is this possible?
Basically I would like to know if we can have fragment layouts in devices with Android OS < 3.0.
My app had a header on top with 5 different buttons and on start always the first button is clicked ...
63
votes
5answers
28k views
findViewById in fragment android
I am trying to create an ImageView in a Fragment which will refer to the ImageView element which I have created in the XML for the Fragment. However, the findViewById method only works if I extend an ...
25
votes
4answers
8k views
Android Fragment standard transition not animating
Im using the v4 android compatibility library to develop a tablet UI using fragments specificaly for Android 2.2 devices and up.
Everything is working as it should, except that I cant get any ...
20
votes
11answers
27k views
Error inflating class fragment
I get the Error
Unable to start activity ComponentInfo{de.androidbuch.activiti/de.androidbuch.activiti.task.Activity}: android.view.InflateException: Binary XML file line #11: Error inflating class ...
10
votes
4answers
14k views
Fragment already added IllegalStateException
I use this method on my container Activity to show a BFrag
public void showBFrag()
{
// Start a new FragmentTransaction
FragmentTransaction fragmentTransaction = ...
29
votes
7answers
13k views
Android Fragments. Retaining an AsyncTask during screen rotation or configuration change
I'm working on a Smartphone / Tablet app, using only one APK, and loading resources as is needed depending on screen size, the best design choice seemed to be using Fragments via the ACL.
This app ...
25
votes
7answers
12k views
Android Fragment no view found for ID?
I have a fragment i am trying to add into a view.
FragmentManager fragMgr=getSupportFragmentManager();
feed_parser_activity content=
...
3
votes
7answers
2k views
ListFragment does not accept my layout
According to this link: ListFragment android developers
I want to set my custom layout for list, but it makes exceptions.
Here is the code:
public class ListFragmentActivity extends ...
17
votes
3answers
7k views
Android - Set fragment id
How can I set a Fragment's Id so that I can use getSupportFragmentManager().findFragmentById(R.id.--)?
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...
...
47
votes
2answers
22k views
Android DialogFragment vs Dialog
Google recommends that we use FragmentDialog instead of a simple Dialog by using Fragments API, but it is absurd to use an isolated FragmentDialog for a simple Yes-No confirmation message box. What is ...
27
votes
1answer
14k views
Difference between Activity and FragmentActivity
I was working on fragments and came across two things Activity and FragmentActivity which are used several times. I want to know that is there any difference between these two, because when I changed ...
32
votes
3answers
2k views
How many Activities vs Fragments?
Intro:
The basic "Fragments Tutorial" pattern goes something like this:
On a tablet, have a list on the left, details on the right.
Both are Fragments and both reside in the same Activity.
On ...
20
votes
2answers
9k views
reusing fragments in a fragmentpageradapter
I have a viewpager that pages through fragments. My fragmentpageradapter creates a new fragment in the getItem method which seems wasteful. Is there a fragmentpageradapter equivalent to the ...
12
votes
3answers
14k views
Passing data between a fragment and its container activity
How can i pass data between a fragment and its container activity? Is there something similar to passing data between activities through intents?
I read this: ...
15
votes
2answers
6k views
How to add a Fragment inside a ViewPager using Nested Fragment (Android 4.2)
I have a ViewPager with three Fragments, each one shows a List (or Grid).
In the new Android API level 17 (Jelly Bean 4.2), one of the features is Nested Fragments. The new functionality description ...
12
votes
5answers
10k views
Fragments, DialogFragment, and Screen Rotation
I have an Activity that calls setContentView with this XML:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
...
12
votes
4answers
18k views
Android Honeycomb: How to change Fragments in a FrameLayout, without re-creating them?
is it possible to switch between Fragments without re-creating them all the time? If so, how?
In the documentation I found an example of how to replace Fragments.
// Create new fragment and ...
3
votes
2answers
2k views
Viewpageindicator inside fragment
With a SherlockActionBar i've created a nice interface. In landscape mode you see both listfragment and "detailsfragment".
Now I would like to a add a viewpageindicator ...
25
votes
6answers
15k views
Unable to use Fragments with Android Compatibility Package
In "Fragments for All", Xavier Ducrohet, Android SDK Tech Lead says Google releases an Android Compatibility Package by SDK Manager.
I've installed it, but, how can I use it now?
How can I integrate ...
19
votes
4answers
13k views
Fragment onCreateView and onActivityCreated called twice
I'm developing an app using Android 4.0 ICS and fragments.
Consider this modified example from the ICS 4.0.3 (API level 15) API's demo example app:
public class FragmentTabs extends Activity {
...
8
votes
1answer
8k views
How to transition from managedQuery to LoaderManager/CursorLoader?
I'm developing an Android application that is targeting API level 8 (2.2, Froyo). I'm using a ContentProvider and that's simple enough, and I'm using SimpleCursorAdapter to fill out my list view, but ...
5
votes
5answers
7k views
Android - SupportMapFragment with google Map API 2.0 giving error
I am trying to use the latest Map API 2.0 provided for android. I am using the supporting lib as I want to support android 2.2.
Following is my code
Main Activity class
package ...
14
votes
6answers
3k views
Why use Fragments? [duplicate]
What is the advantage to using Fragments over using custom Views that are reused in different layouts?
In the original blog post introducing fragments, Dianne Hackborn says that
[Fragments] make ...
6
votes
7answers
14k views
Looking for wrong fragment class with Android compatibility library
I am trying to inflate a layout containing a Fragment using the backwards compatibility package and SDK level 10. I took the jar file and placed it in the libs folder of my project. I extended ...
14
votes
6answers
7k views
Best place to addHeaderView in ListFragment
I'm having some trouble setting up my custom header in my list.
I'm creating a ListFragment with a custom adapter. I have the list working fine, but I'm trying to figure out where in the lifecycle ...
7
votes
3answers
4k views
How to handle AsyncTask onPostExecute when paused to avoid IllegalStateException
I appreciate the numerous postings regarding AsyncTask on a rotation change. I have the following problem when using the compatability lib and trying to dismiss a DialogFragment in onPostExecute.
I ...
