0
votes
0answers
22 views

Show ListView in a TabHost

I'm developing an Android application. I have an Activity with a ListView. The ListView has a flag and the name of the flag. That works perfect. I want to show three tabs (TabHost) like the Contacts ...
0
votes
1answer
26 views

Replace one fragment to another fragment in the TabHost

I am creating a five tabs that contains one fragment each; I am using listView in the first tab, in the listView OnItemClickListener I want to replace from the first Tab Fragment to second tab ...
0
votes
1answer
19 views

Change Tab / Fragment from Fragment

I have a Main.class that extends from FragmentActivity and implements TabHost.OnTabChangeListener. I have have 4 tabs ans this call 4 class that extends from Fragment. For example if I am in the ...
0
votes
1answer
24 views

Tabs at the bottom of screen when using android.support.v4.app.FragmentTabHost as a TabHost

I want to bring tab to the bottom of the screen.The below code is working for tabhost but when I apply it to FragmentTabhost it fails. <RelativeLayout android:layout_width="fill_parent" ...
1
vote
2answers
43 views

Cant change tab icon on android 4.1.2

When I try to change tab icon in 2.3 its working but not on android 4.1.2 . mTabHost.addTab(mTabHost.newTabSpec("device").setIndicator("Device", ...
0
votes
1answer
33 views

multiFragments under one tab in Tabhost

i am creating an application using tabhost. I use this tab host in FRAGMENTACTIVITY. under each tab i open Fragments. But my requirement is FragmentActivity contains a tabHost. and tab structure as ...
0
votes
1answer
41 views

Android - tab functionality implementation using fragments

Actually i implemented the tabs functionality using Fragments. My app having the 3 tabs. At the time of tab creation i set the one fragment for each tab. Suppose currently we are in first fragment of ...
0
votes
0answers
55 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
26 views

Removing a fragment added to a tabhost onTabSelected

please excuse me if this is a duplicate question , im greatly confused when it comes to fragment transactions in tabhosts. I have a tabhost of fragments that works just fine, in one of the tabs is a ...
2
votes
2answers
165 views

Custom Android TabHost Slow Fragments

I use ActionbarSherlock and SlidingMenu. My MainActivity does not access a DB and no Parsing of what ever. Everything is static. Tabs are generated dynamicly depending on the "Section" you choose ...
0
votes
0answers
49 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. ...
-5
votes
2answers
84 views

How to use Fragment in Android 2.2 with image sliding capability [closed]

I am trying to develop a NewsReader app in Android 2.2. I am looking for Sliding feature similar to this: http://i.stack.imgur.com/nb3h4.jpg In the center of the App I need to add one TabHost kind ...
0
votes
2answers
44 views

How to switch tabs programatically in android from fragment?

I have implemented a TabActivity which extends FragmentActivity. It has 5 tabs each tab is a Fragment. What i am looking for is to switch between the tabs programatically. For eg: if i am in tab4. On ...
0
votes
1answer
38 views

Call external application inside a fragment of other application

In my application i have a tabhost with several tabs. When i select each tab i need to call an external aplication inside a fragment of my aplication. I used this code Intent i = new Intent(); ...
0
votes
1answer
174 views

Tab host and fragments

I working with a project In this project my requirements are based on tabs and fragments but im not getting how to deal with fragments in this.. My problem is.. 1.In first screen I need to show ...
-1
votes
1answer
180 views

Android Performance Issue- TabHost - Timer - SetCurrentTab() - Google Maps Api V2

As i said in title i 've got a performance issue on my Android application. I've got a public static tabhost and a timer and a Google Maps. Timer scheduled to work every 3 seconds. It 's updating ...
0
votes
2answers
110 views

Android Google Mapv2 null pointer exception

I am using google map v2 in my application, but when I try to create a object for SupportMapFragment with onActivityCreated() this method is not getting called somebody please help me Here is my ...
0
votes
1answer
302 views

java.lang.IllegalStateException: No activity

I'm building an Android app for which I'd like my first activity to be composed of 2 tabs, one for the user's profile, and one for the friends' activity. For these tabs, I opted for a TabHost since my ...
0
votes
1answer
64 views

Tab, Fragments and Listviews

I have an activity that shows a listview, the listview is contained within a fragment. I now need to expand the view by adding a number of other listviews (essentially filters) on the existing ...
0
votes
4answers
293 views

nullpointer exception in oncreateView() of fragment

This code below shows part of activity where the fragment is added. FragmentTransaction ft = getSupportFragmentManager().beginTransaction(); ft.replace(R.id.fragment_container, srkt_frag); ...
1
vote
0answers
392 views

Android Fragment, No view found for id inside TabHost

I have a simple Android application with tabs set up using Tabhost and Fragments. On one of the tab pages, the fragment is a listview. What I want to do is when a user clicks on one of the items of ...
1
vote
0answers
99 views

Design an App which is smartphone and tablet compatible

My application consists of tabs using Tabhost and Activity group. It is working well for now. However, I am told to extend the app to support tablet. The current app seems to work in tablet, with less ...
0
votes
1answer
78 views

FragmentTabsPager - tabs issue

I have followed the ABS example of FragmentTabsPager, but I'm facing this problem: Activity A has two fragments: F1, F2 which are added in onCreate() method of the A with use of the TabsAdapter. ...
0
votes
0answers
16 views

In old versions I can put an activity as the content into a tab, but now Google asks us to use fragment instead. How can I do the similar thing?

For example in a tab I put an activity which receives information from the internet and shows it. Now, when I establish a new project with the selection "scrollable tabs and swipe", what should I do ...
1
vote
2answers
408 views

Android FragmentTab host and Fragments inside Fragments

I have an app with hierarchy like this: FragmentTabHost (Main Activity) - Fragment (tab 1 content - splitter view) - Fragment (lhs, list) - Framment (rhs, content view) - Fragment (tab 2 ...
0
votes
1answer
402 views

Errors when using a FragmentTabHost inside a Fragment

Im' trying to add a FragmentTabHost inside a Fragment(which is the content of another tab widget. I used the following xml: <android.support.v4.app.FragmentTabHost ...
1
vote
1answer
713 views

fragment oncreateview is not being called when fragment activity starts

I need to implement two tab options. 1)Top station 2)my station I used fragment activity with tab host. I know actionbar should be used but according to psd I need to show tab option at bottom so I ...
1
vote
0answers
107 views

How to attach activity in Sherlock Tab?

I have a activity that will have 3 fragments. I want to add this activity into sherlock Tab. Actually I will have 3 Tabs and each tab will have 3 fragments. So I thought to add activity into tab that ...
0
votes
0answers
197 views

WebView within a SherlockFragment fails to render Jquery Mobile native select menus after initial selection

I'm having a particular issue with using ActionBarSherlock, TabHost, SherlockFragments, WebViews and Jquery Mobile. With so many moving parts, it getting tricky tracking down precisely what is the ...
0
votes
1answer
635 views

How to save/Restore state of Views of fragment on Tab change

I am following this tutorial. there are 3 tabs in my App. in tab3 I m making changes to some views (like buttons and EditText spinners etc) and on the behalf of these changes i have to perform some ...
0
votes
2answers
310 views

How to save/Restores states of Views in Fragments on TabChange

May be duplicate question. but i cant find the solution of my problem I have a TabHost with 3 Tabs. let say tabA, tabB, tabC. I do lots of view changes like button text changes, editText changes in ...
0
votes
0answers
63 views

Android Fragment tabs set tab from other fragment

I am having a Main activity where it has a fragment which has a tabhost and it contains 4 tabs(fragments). In 2nd tab[fragment] I have button when I press that I need to change to the 1st ...
0
votes
1answer
56 views

fragmen'ts onCreate is called every time i switch to it in tabhost

I have some tabs in my main activity, each tab is a fragment. Now, in a certain fragment I do something like this: public class MyFragment extends Fragment{ @Override public void ...
0
votes
3answers
674 views

FragmentTabHost shows fragments overlapped

I am using one FragmentTabHost inside one FragmentActivity, that has 3 tabs. If i change tab from first page of each tab it works fine, but if i navigate throw fragments inside one tab and then change ...
0
votes
0answers
78 views

How to setcontent of tabhost to a Fragment type data

I have this tabhost wherein i have to setcontent() of every tab to different fragment layouts. but setcontent() only accepts integer or Intent or TabContentFactory type data. how am i supposed to ...
0
votes
2answers
44 views

Missing tabs in FragmentHostTab Android

Developing tab based application in android, I have two tabs Tab1,Tab2 like ios always in the screen. Tab1 contains Activity1 which has a listview ,so when i click item on the listview, it should open ...
-1
votes
1answer
389 views

how to setup tabhost inside a fragmentactivity [closed]

I have a project where in i am implementing a tabhost inside a fragment activity. But I am not able to setup the tabhost as it asks me to use setup(getlocalactivitymanager()). How am I supposed to ...
0
votes
2answers
128 views

architectural dilemma - nested Fragments or Activities in tabhost

I need to implement such a construction - I have TabHost which contains nested FragmentActivities. I tried to use ActivtityGroup for embedded FragmentActivities, but got an ...
0
votes
0answers
212 views

TabHost.setup(getlocalactivitymanager()) is not supported in fragmentactivity

I have this code where I want to Display new fragments for each tab . public class Second extends FragmentActivity{ private TabHost mTabHost; private static final String TAG_1 = "tab1"; private ...
0
votes
0answers
198 views

did you forget to call setup(LocalActivityManager) exception in FragmentActivity

I have this code where i want to display new fragments for each tab . public class Second extends FragmentActivity{ private TabHost mTabHost; private static final String TAG_1 = "tab1"; private ...
1
vote
0answers
90 views

Design Suggestion, Tabhost, fragment, or anything else

I have to implement the design something like this, and data will be changed on right and left section only not on top. There is a pattern, On top portion selection --> only right screen will be ...
1
vote
2answers
2k views

FragmentTabHost & Fragments - How do I pass data between tabs?

I have a MainActivity (FragmentActivity) that has a FragmentTabHost. public class FragmentTabs extends FragmentActivity { private FragmentTabHost mTabHost; @Override protected void ...
0
votes
1answer
52 views

android fragments flapping during app startup

Why would my Fragment be flapping during app startup?!? 02-10 11:41:34.699: D/SessionDetailFragment(19272): onResume() 99 02-10 11:41:34.699: D/MPQAudioFragment(19272): onResume() 00 02-10 ...
0
votes
3answers
173 views

Tabs in a fragment

My android application possesses two fragments 1. Left one( that is a menu list) 2. Right one( that is the detail of one item of the left menu) The problem i am facing is to add tabs on each detail ...
0
votes
1answer
115 views

Host 3 fragments with a Tab Widget and retain each fragment instance?

How can I create a tabbed navigation in an activity, with 3 tabs, where each tab loads a different fragment, and those 3 fragment instances are retained, especially on rotation? Of all the tabbed ...
0
votes
1answer
69 views

Adding regular Activitys to ActionBarSherlock tabs

Im using this tutorial as my base code: http://wptrafficanalyzer.in/blog/adding-navigation-tabs-containing-listview-to-action-bar-in-pre-honeycomb-versions-using-sherlock-library/ I had a project I ...
0
votes
1answer
612 views

Why wont my regular Tabhost work w. ActionBarSherlock?

I am pulling my hair out trying to get a simple tabhost to work with ABS, it seems Android only complicates things more when attempting to "improve" them. I was considering converting my project to ...
0
votes
1answer
204 views

Calling method inbetween Fragments which are in tabs

I currently have a few fragments which are all organised in tabs and i want fragment A to call a method in frag B. So I know I need to call the activity which then calls the function in B, I have seen ...
0
votes
0answers
35 views

Unable to instantiate acticity component info: I fail at following tutorials

http://thepseudocoder.wordpress.com/2011/10/04/android-tabs-the-fragment-way/ Following this tutorial, I have copied all the code into my project but when I run this app on emulator or device I get ...
0
votes
0answers
55 views

ActionBar Tab Navigation

I have searched but haven't found a good example of the ActionBar with Tab Navigation using Fragments. I am new to Android and had an app started w/ TabHost setup, since it's depricated I'm now ...

1 2 3