Tagged Questions
4
votes
3answers
26 views
Android Nested Fragment Approach
I am newbie in using android fragments .I got a scenario Let me explain it i got
Main Activity that extends FragmentActivity
.My main activity consists of two Fragments
Option List That extends ...
0
votes
1answer
18 views
Start dynamic (Fragment)Activity
I think the question says it all: I want to create a new FragmentActivit in my code and start it. I think about something like this:
FragmentActivity fa = new FragmentActivity();
...
-1
votes
1answer
22 views
Android: Fragments - java.lang.RuntimeException: Unable to instantiate activity ComponentInfo [duplicate]
I'm trying to use fragments to create a simple, persistent navigation bar. The problem is I'm getting the following Error output.
05-23 14:58:02.861: E/AndroidRuntime(882): FATAL EXCEPTION: main
...
0
votes
0answers
20 views
Panel with 4 fragment
I want to make a screen with 4 columns, using fragments.
When i open the aplication, i load on the first column, one fragment.
In the first column, when i click on button 1, in the column 2 i load ...
0
votes
1answer
17 views
Android Fragment Dual Pane Orientation Error Binary XML file line #7: Error inflating class fragment
I have an activity that switches between dual-pane and single pane depending on orientation with a list fragment and a details view fragment
i.e.
Portrait: Single Pane = List fragment / detail ...
0
votes
0answers
16 views
Issue in managing Tab states using Fragment and FragmentActivity for android.support.v4 library
I have worked on TabActivity in last project and I manage all the states, but now TabActivity is deprecated so I decided to use Fragment and FrameActivity with Tabs using android.support.v4 library to ...
0
votes
0answers
12 views
OnOptionsItemSelected in activity is called before onOptionsItemSelected in fragment. Other way possible?
I have an activity which can contain several fragments. Each of the fragments can have their own menu entries in the ActionBar. This works fine so far and each item is clickable and performs the ...
0
votes
0answers
11 views
Fragment onDestroy/onRecreate Crash Issue
Having a issue with my app crashing I cant get to the bottom of on my own, my entire app works fine besides when I leave my phone alone for a while with the app open and then wake up my screen OR I ...
2
votes
1answer
32 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
1answer
56 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 ...
0
votes
0answers
23 views
Multiple List Fragments in Single Fragment
I am little bit confused in creating this type of layout for my tablet application.
It contains of two list fragments and one detail fragment. Detail fragment can be a List Fragment or simple view ...
2
votes
1answer
67 views
Fragments remain after Activity get's killed and recreated
I have a FragmentActivity (Support Fragments) where I create Fragments by code and put them into FrameLayouts. It all works fine so far.
Now if I leave the App an return everything is fine as long as ...
0
votes
1answer
48 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
26 views
Rotate fragment to create a reflection on the x-axis
So basically I have defined a fragment for a card game I am creating, I wish to reuse this fragment for both player 1 and player 2 (since they both have the same layout) however I want them to be a ...
1
vote
1answer
75 views
How to make particular tab in FragmentTabHost has multiple fragment navigations like tabgroupactivity
I created three tabs using FragmentTabHost. Now I need to make all the navigation are under the tabs. How can I get this. I need to get what we get using TabGroupActivity.
Tab1
--->frag1-->frag2
...
2
votes
0answers
69 views
app crashing - java.lang.IllegalStateException - Fragment com.myapp.android.MyAppActivity did not create a view
I have an activity that extends SherlockFragmentActivity and implements ActionBar.TabListener.
Here's what the xml looks like:
<LinearLayout ...
0
votes
1answer
52 views
Dialog not displaying from fragmentActivity in android
I want to display a dialog inside the class that extends FragmentActivity.I have tried in many ways.Atlast I tried this link. I have tried the samething but iam getting the following error message.
...
2
votes
0answers
55 views
Fragment already active exception coming from camera intent to fragment
I call the camera intent in a fragment, I call this fragment from another fragment like this:
FragmentTransaction transaction = getFragmentManager().beginTransaction();
...
0
votes
1answer
36 views
Add,Replace and addToBackStack confusion
Hi Guys i have a confusion while doing FragmentTransaction.Below is the detail.
I have four Fragments say A , B , C , D.
What i have done is :
first A (replace)
A --> B (add and addToBackStack)
B ...
0
votes
0answers
33 views
Adding multi-pane screens in a tab
I am developing a tabbed application that supports tablets and smartphones. This leads me to fragment design. However, having had little experience on fragments, I am seeking some feedback.
...
-1
votes
0answers
43 views
Page curl animation fro fragments
I'm dealing with an application where we are implementing only fragments as part of requirements.
In my application i need to add page curl animation.
The problem is with page curl animation. I have ...
3
votes
1answer
52 views
Are Fragments and Fragment Activities inherently faster than Activities?
Are Fragments and Fragment Activities inherently faster than Activities?
If I don't need to load my activity in fragments, should I be using FragmentActivities and Fragments over Activities?
Reason ...
1
vote
1answer
59 views
Fragment disappear when change orientation
2 days ago I posted a question: (SOLVED) New layouts in tabHost Android. So I decided to create tabs with fragments instead of tabActivity. So now I have 3 tabs: tab_clients, tab_settings, tab_logut. ...
0
votes
0answers
31 views
Retain the view on fragment tab change
I have a tabbed application, say 2 tabs. It was initially developed using ActivityGroup. However, having realized that multi-panes are not supported in ActivityGroup, I decided to use fragments. ...
0
votes
1answer
18 views
Keeping tab fragment view unchanged
I have a tabbed application using fragments. Following is a code snippet from one of the fragments in tabA
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup viewGroup, Bundle ...
0
votes
2answers
47 views
ListFragment Replace “addView(View) is not supported in AdapterView” after switching from SupportFragmentManager to FragmentManager
I have an activity which has a fragment. When I click on a list item the current fragment gets replaced with another fragment. This used to work correctly...
However, I would like to move away from ...
0
votes
0answers
26 views
previous fragment apears for few secs while popBackStack
I have 2 fragments one is HomeFragment and another one is TutorialFragment.TutorialFragment is accessible through a button in HomeFragment and Home is accessible through a button in ...
0
votes
1answer
51 views
IllegalStateException in Fragment Activity
I have a FragmentActivity class that represents Customer information; inside this class, I have two inner classes for Fragment and Fragment Adapter. Below is my code:
public class ...
0
votes
1answer
59 views
access the imageview from activity to fragment in android
I have to develop one android application.
Here i have using fragment concept.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout ...
0
votes
0answers
74 views
Android-Add SupportFragment and get it back from it's tag - > NULL
I've got a XML like :
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
...
0
votes
0answers
30 views
Need guidance with how I should go about constructing the code to build these UIs
I've made these two mockups of my main view and the detailed view that comes up when one of the items in the main view gets selected.
Main View : http://i.imgur.com/zdkB81x.jpg
Detailed view : ...
0
votes
1answer
109 views
Restore Data in FragmentActivity after back button Pressed
I've read a lot of things about restoring data in FragmentActivity but nothing works in my case. I tried a lot of methods to do it but it never worked.
I have a FragmentActivity containing a ...
0
votes
1answer
63 views
Get fragment window token
I've an FragmentActivity with some fragments that contains EditText.
If I open the keyboard and use my custom navigation (switching the fragments)
the keyboard doesn't closes.
I call that method in ...
0
votes
1answer
226 views
How to save state of Fragments in ViewPager when orientation changes
I have an application that Implements ActionBarSherlock, it's mainly composed of
ViewPager with different content of fragments (for each page), with ViewPager indicator.
Here is my onCreate Method of ...
0
votes
0answers
81 views
Access fragment controls from FragmentActivity
I have a FragmentActivity that should hold 2 Fragments. Each fragment has it's own layout with a table in it. I need to access the tables from the fragments' layouts from within the FragmentActivity ...
0
votes
1answer
35 views
Fragments and screen orienatation issues
public class MainActivity extends FragmentActivity {
FragmentTransaction ft;
Button b1, b2;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
...
0
votes
1answer
113 views
Replacing Fragment : Didn't work
I have a Button in Fragment. If Button is clicked it has to replace the Fragment with another Fragment. The Fragments in activity_main.xml is created statically.
<LinearLayout ...
3
votes
2answers
157 views
Android Fragment View State Loss When Using FragmentTransaction.replace()
I am having a pretty big issue and I am not quite understanding what is happening. I am developing an application that uses Fragments (from the support library) and am using ...
0
votes
2answers
204 views
How to start a Fragment/Activity within Fragment?
I have a button in Fragment. When Button is clicked it has to Open new Fragment/Activity within Fragment. I have written code using Intent,
Intent i = new Intent();
...
2
votes
0answers
107 views
Switching Fragments in Master/Detail Flow
I am attempting to create an app which has a Master/Detail flow using Fragments. Selecting an item will open a detail fragment which may then which to "open" another fragment and add it to the back ...
0
votes
0answers
106 views
Master-detail view with nested fragments in android
So, I am using Actionbar tabs for navigation. For each tab I have a fragment.
In each fragment I need a Master-detail view. For this I am using nested fragments inside the tab fragments.
The nested ...
0
votes
2answers
90 views
How to show second fragment from first fragment with in a single activity
I am developing a simple android app only for tablets and using android 4.0. My application have the main screen like as follow:
Oncreate() of Main Activity I am adding Fragment A in the main.xml ...
0
votes
2answers
554 views
Google Map V2 android error Inflating class fragment error
I am creating an application with tab and I have map in one of the tab, when I open map from it works fine and when I visit some other tab that time also it works fine, but when I come back to the map ...
0
votes
2answers
171 views
Android getActivity() always returns null inside fragment
I have a strange problem in which I encountered:The getActivity() method always returns null inside fragment. I calling it after the onAttach() and onCreateView() are finishing their run.
This ...
1
vote
1answer
119 views
Null Pointer Exception on Fragment Manager
I have a ActivityFragments with threeButtons and FragmentOne, FragmentTwo, FragmentThree classes. When Button1 is pressed it has to show FragmentOne and hide FragmentTwo and FragmentThree. If Button2 ...
0
votes
1answer
423 views
Google Maps API Null Pointer Exception on GoogleMap variable
Im working on an app that requires use of the Google Maps API. Ive been dealing with this problem for two days now. Im using version 2 of the API so I am using the map fragments. So, when I try to get ...
0
votes
1answer
80 views
implement lateral navigation in Android API 10
how to implement lateral Navigation (https://developer.android.com/training/implementing-navigation/lateral.html#horizontal-paging) in android 2.3, api version 10?
Because I did download the ...
0
votes
2answers
54 views
Hiding/Showing fragments in Android
I have one FragmentActivity with Buttons in it and three Fragment classes. If Button 1 is clicked, I want to show FragmentOne and hide FragmentTwo,FragmentThree. and If Button2 is clicked, I want to ...
0
votes
0answers
129 views
Where Fragment save its State when FragmentTransaction.Replace?
Backgroud: i have a menu on the left, and different scrollable contents on the right. i wanted to save the scrolled position. But i failed. Then ...
I have set up a very simple project to test it.
...
3
votes
1answer
114 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 ...






