Fragments represent reusable behaviors or portions of user interface in an Android app.
0
votes
0answers
8 views
Blank page is shown when pop the fragment & replace to the same fragment again
I have 3 fragments, Frag_A, Frag_B & Frag_C.
My navigation logic is: Frag_A ==> Frag_B ==> Frag_C . That's Frag_A is added into layout firstly, so, at the first time, Frag_A is shown on screen, ...
0
votes
2answers
64 views
SherlockFragmentActivity causing ClassNotFoundException
I'm having a class that extends SherlockFragmentActivity
When trying to run the program am getting ClassNotFoundException
I've tried this solution but to no avail.
I would also like to mention ...
0
votes
2answers
29 views
How to implement swipe gestures on listview
I am beginner to android. I want to learn how to implement the following. Check this image:
Here is what i want to implement:
As shown in figure, i need to swipe listview from left - to - right ...
0
votes
0answers
16 views
Error inflating DrawerLayout
public class HomeActivity extends Activity {
private String[] drawer_options;
private ListView mDrawerList;
private DrawerLayout mDrawerLayout;
private ActionBarDrawerToggle mDrawerToggle;
private ...
0
votes
2answers
30 views
Inflating view with Google Maps api v2 for Android
Please help. I have tried and implemented all other solutions, but still no luck integrating google maps in my app.
The current problem is at inflating point in my fragment
05-21 00:17:24.629 ...
0
votes
1answer
21 views
Andorid: How to transfer Arraylist from one fragment to another
Hello stackoverflow,
I´m new to Android and have a question:
I want to tranfer the the fav Arraylist from the FavListFragment to the ApplistFragment.
Can someone tell me how to do this? I tried to ...
1
vote
1answer
17 views
Android - Memory pressure crashes with ViewPager > Fragments > Activities
I am using the v4 Support library in our app, and I have a step-based process in the app that is working fine under normal circumstances. However, we have a requirement that everything needs to work ...
0
votes
1answer
17 views
Different Fragments showing the same content
I've created an activity with three fragments .the first fragment works fine , the second too , but the third shows the same content as the second fragment .
I don't see where the problem is , I ...
0
votes
3answers
17 views
Can't load LayoutInflater in Background Thread
I have a Fragment which has a lot of code in the onCreateView method so I thought I would be a great idea to place this code in an external thread. The problem now is that I have to load a layout in ...
1
vote
1answer
619 views
Add a fragment as ListView header
I'm targeting an android app to API 15 and minimum 8. So I use support library to manage fragments. I have a set of fragments that I use in several parts of the app.
Now, in an activity I have a ...
0
votes
1answer
15 views
ViewPager show empty fragments in onConfigurationChanged()
I have to handle orientation changes so I added android:configChanges="orientation" property into my android manifest, In my activity I override onConfigurationChanged() to handle it.
It's work fine ...
0
votes
0answers
15 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
3answers
41 views
How to know if a Fragment is Visible?
I'm using the support library v4 and my questions are, How to know if a Fragment is Visible? and How can I change the propierties of the Layout inflated in the Fragment? Thanks in advance.
---Edit---
...
0
votes
0answers
31 views
closing app with onBackPressed when on initial Fragments
I have three Tabs and inside the first there is a FragmentList, you can click through to a new FragmentList and then you come to a detailview.
I want to close my app when the user press back if he is ...
0
votes
1answer
41 views
MapView.onPause hangs in Google Maps API v2 for Android
I have a Fragment (from the support library) which includes a MapView (from the Google Maps API v2). When an info window belonging to a marker is clicked, I want to switch from the Fragment containing ...
3
votes
4answers
6k views
getSupportFragmentManager getFragment without tag or id
I'm developing an Android 3.1 Tablet application.
I'm using ViewPager and fragments on one activity. My problem is that I don't know how to set an ID or Tag to fragments.
Activity
public class ...
1
vote
3answers
44 views
Null Pointer Exception In Fragments
I am getting Null pointer Exception while Starting One Fragment From other fragment. I am trying to call a method in the second fragment after Starting the fragment dynamically.
Here is my logcat:
...
0
votes
1answer
50 views
FragmentActivity Crash in onStart
For some reason my app crashes with nullPointerException in super.onCreate.
Its an activity that extends fragmentActivity.
public class LiveMatchActivity extends FragmentActivity
Thats my ...
1
vote
2answers
34 views
open Fragment from FragmentActivity class
I dont know if this is possible.
I have a class which extends Fragment:
public class UsesUser extends Fragment {
And a class which extends FragmentActivity:
public class Uses extends ...
0
votes
1answer
31 views
ViewPager + Adapter in Fragment => laggy swiping
I have a ViewPager with some fragments. Each fragment has a ListView in a SlidingDrawer (=invisible before swiping) with an ArrayAdapter.
Adapter is set on onCreateView(), that slows down swiping, ...
0
votes
1answer
36 views
Changing Fragment
I recently modified my ActionBar as to have two tabs, corresponding to two Fragments respectively.
Let's say my first tab is the Main Page, the second my About Page.
The About Page is static.
The ...
0
votes
2answers
20 views
Change TextView in Fragment OnPreExecute
I am trying to change a text view in the onPreExecute method in AsyncTask, however I keep getting Null Point Exception. Any help or alternatives would be greatly appreciated.
public class FragmentOne ...
2
votes
3answers
88 views
Android Fragment getArguments() returns null
As the title suggest.
I've downloaded fragment code from here, http://developer.android.com/shareables/training/FragmentBasics.zip.
It is Fragment example from Android Official Developer site. ...
0
votes
1answer
26 views
android using ViewPager to show images
I'd like to download a bunch of images from web and then show them using my custom PagerAdapter. So I can slide to browse all of these images.
I define an activity named as PhotoSlideActivity which ...
1
vote
2answers
30 views
Android Tabs Content for better User Experience
I have an Activity which has 3 tabs which are Fragments.
Featured
Up Coming
Favorites
Right now my implement when i click a particular tab it downloads the content from the internet and displays ...
0
votes
2answers
39 views
Buttons not working with listview
I have buttons across the top of my listview. The buttons do not function until I select an item from the list. According to some other posts, I should add the following line to my XML file: ...
0
votes
0answers
19 views
Communicating fragments with Service
I know that fragments to fragments comm. happens through activity callbacks, activity to service comm. happens through broadcast receivers/intents. I was wandering if we have any way of communicating ...
0
votes
0answers
19 views
Using Fragments in android with tabs
I want to show action bar with bottom tabs also in my application, i used fragments to show multiple activities in single tab. But i have a problem, i have a log in screen which can be accessed from ...
0
votes
1answer
32 views
Navigate to Fragment which is not in current Activity
I use this code from here to create a Flip Card Animation for older Android devices. Now I want to flip to a Fragment which is not in the current Activity. I tried with this code:
MyFragment f = new ...
0
votes
1answer
22 views
Tabs content is visible on top of another after screen rotation
I have read alot on stackoverflow on fragments issues but I cant find a solution to my problem.
I have a Tabhost and when I change rotation of the device and then select another tab, the view from ...
0
votes
1answer
20 views
how to zoom or scale fragments
As everyone knows android built-in-zoom control works for ImageView And WebView. In my project I have 3 fragments that shows in an activity. I need to zoom each fragment by touching or dragging. Is ...
0
votes
0answers
11 views
Save fragment state inside a Tab
I made an ActionBar with two tabs - one for afragment and bfragment. afragment contains a button. Clicking the button on afragment will result it to change to cfragment. However, clicking the tab ...
3
votes
1answer
77 views
+50
How automatic fragment restore works
When using FragmentActivity it automatically restores fragment state and recreates all fragments.
I know this is done mainly saving the state in onSaveInstanceState and then restored in activity's ...
0
votes
1answer
34 views
What is the analog of startActivityForResult() but using fragments
I have 4 tabs, each runs a fragment when selected.
From tab #2 fragment I want to start another fragment to run on tab #2 and get results from it. What is the right way to do this? Are there any ...
0
votes
1answer
21 views
FragmentAdapter doesn't hold the good reference of the fragment
I'm currently trying to work with fragment, but I'm stuck with an issue I can't solve.
I have one activity, which holds 4 different fragment. From this activity, I launch an ASyncTask which goes to ...
1
vote
3answers
65 views
Can't change a Custom DialogFragment layout dynamically
So reading through the Google API Guides I came across how to load a custom layout within an Alert Dialog Box here.
I wrote a class that extends a DialogFragment class like this:
String product;
...
1
vote
1answer
39 views
Confused with remove Fragment
I have an Activity with a Button and a FrameLayout in its layout.
When I click the Button I add the fragment to the Activity's View.
If I add the fragment to the Back stack with addToBackStack() when ...
2
votes
0answers
52 views
+50
Fragment which is not top most in backstack is resumed
Given the application flow show in the graphic and textually described in the following.
Fragment 1 is the lowest fragment but not in the backstack by setting disallowAddToBackStack.
Fragment 2 ...
0
votes
1answer
24 views
Switch Fragments inside a Tab
How do I switch fragments inside a tab?
My application contains three fragments, AFragment, BFragment, and CFragment. These fragments, in turn, correspond to their own layout files: AFragment ...
4
votes
3answers
188 views
Google Maps v2 lag after popping their fragment back from stack
I have an Activity with a MapFragment that I add to the Activity programmatically using a FragmentTransaction:
private static final String MAP_FRAGMENT_TAG = "map";
private MapFragment mapFragment = ...
0
votes
2answers
27 views
SQLite database in combination with fragments
I'm changing my application from Activity's to Fragments, it's going great but I've one bug that won't let me open my database. Here's the error (from the logcat):
05-17 15:28:38.704 ...
1
vote
0answers
17 views
+50
Android: When to register and unregister for notifications?
I use a Notifications interface to update fragments whenever data is changed.
public interface Notifications {
void register(ID id, Listener listener);
void unregister(ID id, Listener ...
7
votes
1answer
643 views
Can you use the merge tag with fragments?
If I use the merge tag as the parent tag for my fragment's layout, I run into two issues:
first, in onCreateView(), if I specify NOT to attach to root, I get the error:
...
0
votes
0answers
14 views
detect fragment change with mediaController
I have a tab bar with fragments
One of these fragments contains a VideoView with a mediaController always displayed
The problem is if i change tab the mediacontrollser remains displayed in another ...
0
votes
1answer
35 views
Fragment within a Fragment
I have an ActionBar containing two tabs, Fragment A and Fragment B.
Is it possible to have Fragment A hold ANOTHER two fragments, Fragment C and Fragment D? Let's say I want Fragment A to initially ...
0
votes
0answers
5 views
Can you have a loader without fragments
Very basic loader question.
My WIMMOne watch uses Android 2.1 (version 7).
There are no orientation changes, etc. with a watch. The small screen does not have room for any layout changes. So no ...
0
votes
1answer
42 views
Recovering FragmentActivity after screen rotate
I'm using ViewPagerIndicator library by Jake Wharton and in FragmentActivity shown below when I rotate the screen the onCreate method is called but the activity remains blank and only displays the ...
0
votes
1answer
28 views
DialogFragment keeps displaying full screen (not in a dialog)
I have a DialogFragment which contains a WebView. I create an instance of the DialogFragmentwithin the activity and call the show method on it. Usually this displays it as a Dialog over the current ...
0
votes
1answer
23 views
register and unregister broadcast reciever in a fragment
My app has action bar with 3 fragment tabs.
In the second fragment I register and unregister a broadcast reciever?().
I unregister the reciever in onPause, and register the reciever in onCreateView ...
1
vote
1answer
38 views
View Pager show only 1 ListView
I'm building some custom listview then add them to View Pager.
But when I swift screen, View Pager show only 1 Custom ListView.
this is the image of problem:
the SpeakingActivity.java
public ...











