Tagged Questions
0
votes
0answers
19 views
Change to a landscape layout from Fragment but not if ProgressDialog is active
I have a Main Activity that contains several fragments via the action bar/pagerAdapter.
So what I want to happen is if user rotates the phone, a new layout is used unless the progress dialog is still ...
0
votes
0answers
37 views
How to use Horizontal Swipe with FragmentPagerAdapter inside a fragment
I want to use the FragmentPagerAdapter inside a fragment that is taking half of the screen so that there is a fix fragment in the upper half of the screen and you can swipe the lower part of the ...
1
vote
2answers
116 views
How do I use FragmentPagerAdapter to have tabs with different content?
I want to have different tabs, where you can swipe through like in the android market. Each tab should use one fragment and use one method for it.
This is my FragmentPagerAdapter class:
public class ...
0
votes
1answer
37 views
Vertical Sliding For Fragments
Is there any way to Vertical sliding for Fragments in Android? I mean something like FragmentPagerAdapter but in vertical mode. I need this to write a text viewer with vertical sliding pages, ...
1
vote
1answer
141 views
Trouble with ViewPager displaying Fragments
I am trying to get a fragment with three tabs displayed using ViewPager. Initially I used to instantiate the fragment from the Activity using FragmentMgr, this worked fine. When I converted this ...
0
votes
0answers
87 views
Android FragmentPagerAdapter, getItem and fragment caching
My code FragmentPagerAdapter creates n fragments.
My problem concerns performance.
I navigate fragment number 0, 1, 2, 3 and FragmentPagerAdapter caches for me.
A lot of loaded fragments are hard ...
0
votes
0answers
53 views
Remove Page from Page Viewer
i have PageViewer and and a FragmentStatePagerAdapter where i create new fragments which consists of 6 page...as below
public FragmentStatePagerAdapter (Context context, ...
3
votes
1answer
115 views
FragmentPageAdapter quirks and crash
I am pretty new to android development, and I started with a simple project to learn how to handle most of the basic UI.
I've used ActionBarSherlock and ViewPageIndicator, and overall the simple app ...
1
vote
1answer
126 views
Remove and add page to FragmentPagerAdapter
i am using a fragment pager adapter with 5 pages. and im setting the adapter to view pager as below
public class xxx extends FragmentPagerAdapter
{
final int PAGE_COUNT_LOGGED_IN = 6;
...
2
votes
1answer
56 views
FragmentPagerAdapter displays all fragment contents on first page
In memory, I have a list of Items, each with a title and a list of 0..N Chunks (which store some information). I know that I am creating this list in memory correctly as I've output the whole ...
1
vote
1answer
183 views
FragmentPagerAdapter getItem is not being triggered
Currently, with a FragmentActivity, I toggle among 2 type of Fragments using the following code.
private void toggle() {
Fragment oldFragment = ...
0
votes
1answer
455 views
Problems with FragmentPagerAdapter
I'm trying to make a slidescreen with viewpager and fragments so that I can load different layouts per fragment and give each page different functionality.
I followed a tutorial to accomplish this.
...
3
votes
1answer
84 views
Android Display and save data in next tab
I have created a FragmentActivity of 2 tabs. This is a very basic Tab example from Android Developer tutorial using FragmentActivity and FragmentPagerAdapter Code Here
public class ...
0
votes
2answers
144 views
How do I pass a variable through a FragmentPagerAdapter to a Fragment?
I'm an android beginner, trying to learn, and this is my first question, so please excuse me if the question is too simple and please tell me if I'm using the forum incorrectly.
I have a ...
1
vote
1answer
93 views
Controlling android fragment creation order
So, I've got 3 fragments in a FragmentActivity. I have an xml layout file with some containers etc. so I setContentView(R.layout.my_activity) and then programmatically add the 3 fragments. 2 of these ...
1
vote
1answer
591 views
How to get fragment references for Android FragmentPagerAdapter
I'm using a ViewPager with a FragmentPagerAdapter to allow swiping between 2 fragments. I'm not using FragmentStatePagerAdapter because it destroys and recreates new fragment instances when swiping ...
0
votes
0answers
124 views
FragmentPagerAdapter - starts the app with the Detailed Fragment page and not the ListFragment page
I am using ListFragment & DetailedFragments. When I run the app the MainActivity loads the ListFragment and everything works fine. The problem started when I added a FragmentPagerAdapter & ...
1
vote
2answers
885 views
Viewpager and Sherlock Fragments. How to do somethng inside fragment from FragmentActivity?
I have a parent SherlockFragmentActivity class that contains ViewPager with 4 Fragments inside.
One of them extends from SherlockListFragment and I want to scroll it to top by click on it's tab.
...
0
votes
1answer
229 views
Fragment member variables getting null when accessed in onPageSelected()
I'm using FragmentPagerAdapter with FragmentActivity to create swipe-able Fragments.
My first fragment in that pagerAdapter look like this.
public class MySummaryFragment extends CommonFragment ...
0
votes
2answers
442 views
How do I get the back button to go to a certain Fragment in horizontal scrolling? Exits app right now
the title pretty much explains it.
I have horizontal scrolling set up, the first screen has buttons to the other Fragments as well as the whole horizontal scroll system. What I would like is for the ...
0
votes
4answers
666 views
How to get existing fragments when using FragmentPagerAdapter
I have problem making my fragments communicating with each other through the Activity, which is using the FragmentPagerAdapter, as a helper class that implements the management of tabs and all details ...
1
vote
1answer
1k views
Refresh images on FragmentStatePagerAdapter on resuming activity
I have created an activity that uses FragmentStatePagerAdapter to provide small gallery. However, I can't get it to refresh when activity resumes (after coming back from other activity, for example). ...
2
votes
1answer
318 views
keep instances of fragments inside FragmentPagerAdapter
Is it OK to keep an instance of every fragment that is created for a FragmentPagerAdapter inside the FragmentPagerAdapter?
Something like this:
@Override
public Object instantiateItem(ViewGroup ...
0
votes
1answer
502 views
Android: limit fragments loading with a viewPager
I have 3 fragments that are managed by an FragmentPagerAdapter, set to a viewPager.
I want to load fragments one by one, but when the onCreate method of FragmentActivity is executed, the 2 first ...
4
votes
1answer
1k views
ViewPager + FragmentPagerAdapter inside a DialogFragment gets “IllegalArgumentException:No view found…”
I am trying to show a FragmentDialog ( created and shown as a dialog NOT added as content in a view hierarchy) where there is a ViewPager whose content is given by a FragmentPagerAdapter (provides ...
1
vote
0answers
366 views
Adding Three Fragments Throws IllegalStateException
I used the generated activity with swipe views and title strip. My code worked with two fragments per activity, however when I add three it force closes.
The error is:
...
0
votes
1answer
1k views
Android changing fragment order inside FragmentPagerAdapter
I have ~20 fragments inside FragmentPagerAdapter that contains a list where it picks the fragments from so theres no recreation of fragments.
private List<TitledFragment> fragments;
public ...
2
votes
1answer
1k views
Replacing ViewPager with Fragment - Then Navigating Back
I've got an activity which initially hosts a ViewPager, hooked up to a FragmentPagerAdapter.
When the user clicks on an item inside the ViewPager's child fragment, I'm using a FragmentTransaction to ...
0
votes
0answers
1k views
ViewPager + FramentPagerAdapter: udpate view inside Fragment in ViewPager
I have one ListView. When I click one item in the list, it start a new activity (call A activity). This activity extends FragmentActivity, host a ViewPager B. This ViewPager uses SectionPagerAdapter ...
0
votes
0answers
393 views
How to refresh the listview in a list fragment?
I have listviews of "music channels" in fragments. Context menu is attached to listview items, and I'd like to refresh / update the listview when a menu item is selected. notifyDataSetChanged() does ...
0
votes
2answers
1k views
How to Use ViewPager to switch to other layout?
public class SectionsPagerAdapter extends FragmentPagerAdapter {
public SectionsPagerAdapter(FragmentManager fm) {
super(fm);
}
@Override
public Fragment getItem(int i) {
...
9
votes
2answers
6k views
Android getting fragment that is in FragmentPagerAdapter
I have following problem:
I have one activity in which I have two tabs which are made both as fragments using FragmentPagerAdapter
In some moment I would like to change View of one of these ...
2
votes
2answers
2k views
FragmentPagerAdapter getItem error with ListFragment
I've looked at quite a lot of code and can't figure this out. http://developer.android.com/reference/android/support/v4/app/FragmentPagerAdapter.html
It has to be something simple.
I'm showing most ...
0
votes
1answer
58 views
Suggested way to retrieve Fragment managed by Adapter
I have fragments in a FragmentActivity, that has an ActionBar and Tab navigation. My problem is that I want to call a method on the Fragment. I cannot use findFragmentBy[Id|Tag], because the fragments ...
0
votes
1answer
83 views
Android, How to know which page of ViewPager has been clicked?
Based on FragmentPagerAdapter, I have inflated my view pager and I can see my items in each page. How to know, which page is clicked by user to direct him/her see detail of information?
Thanks
0
votes
0answers
597 views
Android, Is the concept of FragmentPagerAdapter different from BaseAdapter?
Actually I don't understand what is concept behind FragmentPagerAdapter? I'm completely familiar with base adapter but it seems something is different with FragmentPagerAdapter.
In my project I have ...
0
votes
0answers
240 views
Saving ViewPager state when leaving the Activity
I have two Activities, one Main Activity with a ViewPager with two Fragments that direct me to the other Detail Activity from which I can go back to the Main. I would like to save the state of the ...
1
vote
3answers
1k views
Why doesn't Android Facebook interface work with Fragments?
I'm switching some Android Facebook code from an Activity to a Fragment. Prior to the switch everything worked fine, but now the onComplete() callback is not being executed.
Does the Facebook code ...
2
votes
2answers
4k views
How to Remove Fragment from FragmentPagerAdapter?
I know there are some topics about this here already but I could not find a solution which I could get to work for my case.
I have a working sliding gallery using a custom FragmentActivity and ...
1
vote
1answer
2k views
Access elements in FragmentActivity from a Fragment object
I have a FragmentActivity with a FragmentPagerAdapter which holds a number of Fragment objects through which I can slide with a horizontal swipe.
I was wondering if I can access an element ...
0
votes
1answer
568 views
Weird dissappearing Fragments with FragmentPagerAdapter
I'm trying to build a Fragment that holds a gridview for a nice UI. I have used some of the sample code to try and build this.
Do I really need to keep track and save the state of my fragments for ...

