The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
27 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
1answer
19 views

Tabs go to top if i set customView of ActionBar on Android

I add tabs and viewpager to my project. actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS); Everything is perfect until i set custom view of actionBar: ...
0
votes
2answers
24 views

icons in TabSpec on the TabHost

I have to put an icon for each tabspec for a tabhost(who has fragments inside); but with this piace of code it doesn't work: tabspecs fill the view and the fragments aren't shown. I tried with ...
-2
votes
0answers
15 views

Data inside each tab should not change on tab switching

I need to design a tab application in which data should not change while tab is switching.Data should populate only first time
0
votes
1answer
21 views

ListFragments Contain Same List

I'm writing an app for my church that uses ListFragments with Tabs + Swipe navigation. If I only have tab/listfragment, it displays just fine. However, if I have multiple tabs, the list in each ...
0
votes
1answer
32 views

ActionBarSherlock Tab Navigation - Same listview data but different layouts for each tab

In my app, I have a searchable activity which displays results using a webservice in a listview. I want to add 3 tabs navigation ("liste", "carte" and "photo"). "liste" is the default tab. When ...
1
vote
2answers
35 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
1answer
24 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
0answers
9 views

dynamic tab with dynamic list view in each tab android

i want to ask about dynamic tab with dynamic listview in each tab content. could you give me an example that shows the dynamic tab? for example, i want to create an activity that containing many tab. ...
0
votes
0answers
16 views

Tabs with TabActivity

i have a next problem when run this code!! public class MainActivity extends TabActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ...
1
vote
2answers
79 views
+50

Any Alternate method for Class Casting

Following statement is not executing on some devices. AddEvent act1 = (AddEvent) getLocalActivityManager().getCurrentActivity(); Is there any alternate method for above statement. On some devices ...
0
votes
1answer
61 views

use SectionsPagerAdapter with custom fragment

When creating a template project with holo fragments and tabs and sectionsPagerAdapter you get something like this public class SectionsPagerAdapter extends FragmentPagerAdapter { public ...
0
votes
0answers
12 views

Android Actionbar set width to the tabs

Currently I'm busy on a WHMCS app for my company. As navigation I want to use the Tab functionality in the actionbar. However, how can you edit the width of a tab? I need 5 together on one screen ...
-2
votes
2answers
37 views

Replacement of 'TabActivity' in Android [closed]

I used TabActivity for tabs in my application. Now TabActivity is deprecated. So I googled and found that 'Fragment' is the replacement for the TabActivity to create a tabs. Can someone guide me to ...
0
votes
0answers
17 views

Orientation issue with child activity for tabactivity android

I am developing an application where I have a tab activity and 4 child activities(Tabs). Now in my second tab I need to send one bluetooth request on every time i start this activity so I added this ...
0
votes
1answer
26 views

Starting an Activity with AsyncTask as Child Activity

I'm trying to implement a Tab in my application. So, I have to start the activities as child activities. But problem arises when I start a certain child activity, but not on other activities. So maybe ...
0
votes
0answers
59 views

How to use Master/Detail Flow together with Tabs on Android

I want to achieve the following layout to my android-application (upper layout for tablets, lower layout for smartphones) including the capability of swiping between the subitems: So I've created a ...
0
votes
1answer
25 views

DatePickerDialog Fragment Crashing using TabsAdapter and ActionBarSherlock

I'm using a tabs adapter with Fragments and ActionBarSherlock. I want to use a datepicker dialog in one of my fragments, called from an onClick event on one of the buttons. The app is crashing when ...
0
votes
1answer
50 views

Fragment with googlemaps: inflater.inflate crashes when destoried and recreated in ViewPager?

I am using actionbarsherlock and its sherlockFragmentActivity. I have 3 fragments and in a Tab + ViewPager layout. The 3rd fragment is the problem. It is a fragment that displays my location on a ...
1
vote
0answers
93 views

Android design guidelines for a tab bar and segmented controls

I am about to start porting an iOS application to Android targeting ICS devices. The PM/designers had originally agreed that we will follow the Android design guidelines to provide users with a ...
0
votes
0answers
25 views

Change ActionBar tab text size

I create tab in my action bar by doing ActionBar.Tab incidentsTab = bar.newTab().setText( getString(R.string.incTab)); ActionBar.Tab apparatusTab = bar.newTab().setText( ...
1
vote
0answers
71 views

View added programmatically to android tab fragment not visible

I'm creating a Fragment Tab which contains a LinearLayout inside a ScrollView, to which I want to programmatically add a new View (aChartEngine chart). According to the Android documentation: To ...
1
vote
0answers
42 views

Replace fragment in tab

I am trying to implement an Action Bar with Tabs navigation set using ActionBarSherlock. I currently have three tabs which I can switch between ok. On one of my tabs I am implementing a ListView. When ...
0
votes
2answers
33 views

Way to maximize screen area

I have this screen structure in my app: Which is tremendous waste of area. Mainly in the system bar and the action top bar. I would like to: Move the app logo and title to the system area Narrow ...
0
votes
0answers
34 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
vote
1answer
54 views

Fragment not showing on actionBar tab select after orientation change

I can't get fragments to work properly with ActionBar - when I change tab the fragment switches properly. But when I rotate the phone, then remembered fragment shows correctly (depending on what was ...
0
votes
1answer
48 views

change current tab after calling tabactivity by intent

I am having a Tabactivity with two tabs and I am calling this tab activity from other activities ..but I want to set tab according to activity from where tab activity has been called .For that I have ...
0
votes
0answers
24 views

Get a specific swiping ImageView in Android

I implemented a dynamic swiping ImageView from a folder with many pictures (with a PagerAdapter). It works, but now I would like to add specific actions on my tabs (in the top menu of my app) to go to ...
0
votes
0answers
28 views

Add icon to tab in android

I am trying to add an icon to a tab in android and it isnt working. here is part of my code, im not sure what is wrong th = (TabHost) findViewById(R.id.thbodyview); th.setup(); TabSpec specs = ...
0
votes
1answer
109 views

Tab Layout in Android with ActionBar and Fragment

When I create separate project to create a Tab layout with actionbar in Android by following this tutorial, it is working fine. But when I am trying to load Tabbed activity from Main activity by ...
1
vote
2answers
48 views

Android TabHost causes a runtime error

I am creating a simple tab interface with 3 tabs using a TabHost. When I run my app there is an error and the debugger shows the following: This looks weird since ActivityThread is a part of ...
0
votes
0answers
62 views

FragmentActivity can not use ListFragment (SherlockFragment)

extend SherlockListFragment doesnt work; It gives ClassCastException error. I tried SherlockFragment instead of SherlockListFragment and it worked. How can I work with SherlockListFragment ? I m not ...
1
vote
0answers
68 views

Android ActionBar: show/hide tabs dynamically?

Is it possible to remove/restore the tab bar from the action bar dynamically? Up to now I did this by changing the navigation mode of the action bar. I used following code to remove and restore the ...
0
votes
1answer
83 views

ActionBar Tab and Master Detail Layout

I'm having an issue with the actionbar tabs and getting the master/detail layout to work. I have the a master/detail working but I am now adding tabs, so I can select a different layout. But, it ...
0
votes
1answer
102 views

“Content view not yet created” on orientation change with ontabreselected, setSelection(0) in listfragment

With Android 4.2, I'm using actionBar tabs to switch betwween list fragments with cursorloaders and sqlite, and all works fine. I use the ontabreselected callback to move back to the top of the list ...
2
votes
1answer
184 views

ListView containing TabHost with other ListViews

I want to create a ListView with the last row showing a TabHost with two tabs. I would like to load another ListView for each tab. For this, I've created three XML files. The main.xml is where I'm ...
0
votes
0answers
97 views

Tabs issues for nexus 7 and Galaxy Tab2 7.0. It stretches and squeezes whereas in other devices it works fine

I am encountering an issue related to Tabs in various devices I am using 5 tabs and ech tab has text and a drawable which i assign at runtime in my HomeTabActivity. I have a patch of code declaring ...
1
vote
2answers
113 views

How to change colors of actionbarsherlock tabs color and the line under the tabs?

My question is simple to understand. How to change colors of ActionBarSherlock Tabs Color and the line under the tabs? In the AndroidManifest, in the application part, I write: ...
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 : ...
2
votes
1answer
904 views

Android Scrollable Tabs + Swipe state when swiping

I'm trying to make an application with multiple Tabs. For each tab I'm using different fragments. And when I leaf through tabs the information in them is changing. How can I save the state of each ...
0
votes
2answers
58 views

Fragment is re created when ActionbarSherlok tab is selected

I have a Fragment Activity which holds three fragments. public class MainActivity extends SherlockFragmentActivity { /** Called when the activity is first created. */ @Override public void ...
0
votes
0answers
138 views

ActionBar Fragment view with multiple fragments

I have an app with 1 Activity which has 3 tabs created with ActionBar Sherlock. One of these tabs has a ListFragment which is then replaced with other Fragments when an item is chosen. The problem ...
4
votes
1answer
215 views

Creating custom tabhost like in chrome browser for Android

I want to create custom tabhost for browser like tabs. I am confused about how to apply it for a layout like in chrome browser tab as in the image. Here is what I have tried. I want to know how to ...
0
votes
0answers
37 views

Android How to get tab with icon and text in Android version 3.0 plus

I am working on Android Tabs with sdk minimum version API 11 and target is API 17. I have written code like this. public class MainScreenActivity extends TabActivity{ @Override protected ...
0
votes
0answers
52 views

Action bar “onTabSelected” how to ignore tab select?

I am having several actionbar tabs, once clicked, the tab will become highlighted. but in some case, I don't want an invalid tab to become highlighted. how to do this? I tried directly return or ...
2
votes
3answers
373 views

Tab bar app in Android 4.0

I am going to develop a android app in Android 4.0 like the below image. I have to create these tabs dynamically, that dynamically call addTab() method and create tab bar dynamically. Is the ...
0
votes
1answer
67 views

Scroll current tab highlight in ViewPagerIndicator

At the moment, if I'm using TabPageIndicator in Jake Wharton's ViewPagerIndicator the current tab is only highlighted when the ViewPager snaps to a single fragment. What I was hoping for is the ...
0
votes
2answers
73 views

Cannot start child activity

I'm trying to add a child activity using TabGroupActivity parentActivity = (TabGroupActivity) getParent(); parentActivity.startChildActivity("AlbumDetailsLatest2", i); but seems ...
0
votes
0answers
26 views

More activities in one tab in tabhost

I have one activity that is in one tab in the tabhost. That activity calls another activity that is not in the tabhost, but I need to show the tabs in that activity also. So is there a way to do this? ...
0
votes
0answers
154 views

How to set TabStrip on the top in Bottom tabs with drawables in android

I am developing a sample application for tablets using android 4.0. This application has no title bar/action bar and have full screen mode. In this app I used Tabwidgets and sets the tabs on the ...

1 2 3 4 5 6