The tabwidget tag has no wiki summary.
52
votes
11answers
39k views
Android: Tabs at the BOTTOM
I've seen some chatter about this, but nothing definite.
Is there a way to put the tabs in a TabWidget to the bottom of the screen?
If so, how?
I've tried the following, but didn't work:
a) ...
8
votes
3answers
15k views
how to change the color of the tabs indicator text in android?
how to change the color of the text indicator of tab? i can change the icon using selector tag refered the example. but cant to the text color. how?
7
votes
2answers
2k views
TabHost / TabWidget - Scale Background Image?
I need to scale my TabWidget background images so they maintain aspect ratio.
I am using a TabHost with a TabWidget. I am then using setBackgroundDrawable to set the images.
I found a close answer ...
7
votes
5answers
4k views
Get rid of the line under TabWidget
I've got simple tab activity with next layout:
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
...
6
votes
4answers
11k views
Android TabWidget in Light theme
I have an application that targets the 1.5 framework and uses the default light theme. When using a tab widget with this theme, the tab images are barely visible, and the tab captions are quite ...
5
votes
2answers
800 views
Controlling Tab colour-state / size in a TabActivity?
Ok, this is driving me nuts - I've searched all of the references and examples I can find and I still seem to be missing something really obvious. These are the tabs for a 7-day TV Guide (not normally ...
5
votes
1answer
446 views
How do I change the color and/or drawable of the TabWidget divider in Android?
I'm using a TabLayout and I have custom images for the tabs that I am using, but for the life of me I can't figure out how to change the color or even the image of the divider between the tabs and the ...
5
votes
3answers
3k views
android:orientation=“vertical” does not work for TabWidget
My app has a tabhost with four tabs, and now I'm trying to make nice layouts for landscape mode. In order to make use of additional horizontal space I want to put TabWidget at the right side of the ...
5
votes
1answer
5k views
android tabwidget intent tabs refresh every hit
I want to create a tab using child tab having intents, so that when ever user click on tabs intents get refresh.
Every time user click on tab i want to refresh and called oncreate method of child ...
4
votes
1answer
153 views
How to set selected tab must be in middle
I am new to Android and in my project I have requirement
i.e I have six tabs but I show ...
4
votes
5answers
5k views
TabWidget - How to set position of indicator text?
i'm trying to use TabHost and TabWidget in my Android application. This is my layout main.xml:
<TabHost
android:id="@+id/mainTabHost"
android:layout_width="fill_parent"
...
3
votes
2answers
169 views
android change textview outside of TabWidget within an activity
I have an application with a few tabs which all belong to the same TabHost. Is there any way to change the TextView android:text value before the TabWidget in any activity other than the main activity ...
3
votes
1answer
2k views
Android: Tabstyle
I have been trying to make a tabstyle that looks like this. But so far it doesn't work
Can someone help me with this..
...
3
votes
2answers
1k views
Different sized tabs in Android
I have an application with 4 tabs. By default every tab width is 1/4 of the screen width. How can I override this?
I need the tabs to have a different width for each one. Any ideas on how to ...
3
votes
2answers
3k views
How to get rid of horizontal scroll bar in tabhost?
I want to get rid of horizontal scroll bar in TabHost. It's there even if TabWidget is on top.
Below is my xml layout.
<?xml version="1.0" encoding="utf-8"?>
<TabHost ...
3
votes
1answer
1k views
TabWidget not stable at the bottom in Android? Why?
I set my tabWidget at the bottom. When i want to edit the edittext the keyboard will raise up. But the tab widget come above the keyboard. To support for the multiple screen i set the ...
3
votes
1answer
3k views
Customizing tab indicator images in android?
how to change the tab indicator's images in android? there is a tab_indicator.xml file in-built in android sdk. in that the Relative layout has the background as a tab_indicator file as background. ...
3
votes
3answers
5k views
TabWidget white foreground color?
I don't know what I did but for a period of time my TabWidget had white colored tabs which looked really nice. I never set a theme or background/foreground color in my project at all. The next time I ...
3
votes
1answer
1k views
android first tab intent oncreate always called regardless we set tab2 as default tab
Following is the example of tabs with intent data.
While debugging i found that always when first tab we add in tab host in our case following tab
tabHost.addTab(tabHost.newTabSpec("tab1")
...
2
votes
2answers
305 views
Android - Tabhost (Tabwidget) issue with multiple tabs
I have five tabs in my list, you can see the three first tabs when TabActivity get started, then if I scroll to the right, the other two will also show up. Problem I have is that the next two tabs ...
2
votes
4answers
435 views
Android: customizing the look of Tabs using TabHost & TabWidget
I opend a post about this before but I feel that I can now (after reading some other posts) better explain what I want and rephrase it so it will be better understand.
I followed the tutorial about ...
2
votes
1answer
1k views
Android Tab view
I have issue in the tab view. I have to show tab view many navigation. For example . In the first tab called "Sales" , It list all sales route.If the user click one route it need to go list of ...
2
votes
2answers
171 views
App content going off bottom of display bc of TabWidget?
I'm creating an app that contains a TabWidget at the top. Everything looks fine, except on smaller screen sizes, the content off the tab 'disappears' off the bottom of the screen. I've looked around ...
2
votes
1answer
694 views
Tabwidget overlaps with my activity content
after spending 2 solid days searching for an answer, I would like to ask for help about the following behaviour.
I'm trying to code a simple tabhost application on Android, with a layout per ...
2
votes
1answer
484 views
How to use the same Activity for 3 different tabs in TabActivity with different inputs
I have an TabActivity which has 3 Tabs reusing the same Activity for all the 3 tabs.
I am differentiating by means of extras(intent.putextras()) which i shall display the contents of each tab
Now ...
2
votes
1answer
2k views
Android - TabHost inside ScrollView
I'm writing an app that implements nested tabs. Because two sets of tabs occupy quite a bit of space and generally because the nature of the content I would like to place the whole inner TabHost into ...
2
votes
1answer
437 views
Working with onPause, onRestart, in Tab Widget - Android
I have a ListView that is inside a TabWidget. When I select an item on the ListView and go to the child ListView, the TabWidget disappears. This is fine, except that it invokes the onPause method, and ...
2
votes
2answers
1k views
Existing patches for android tabwidget to allow tabs on left-hand side?
My employer is having me work on an android application with very specific UI requirements. Specifically, we need an interface that looks exactly like a TabWidget interface. However, having the tabs ...
2
votes
1answer
974 views
Few questions about android TabHost
I'm new in android and I have few questions to ask.
Is it possible to use the keypad (Left and Right) to move from one TabHost to another?
I successfully changed the selector color in listview, then ...
2
votes
3answers
3k views
Why do I get a null pointer exception from TabWidget?
I'm writing an android program in which I have an activity that uses tabs.
The Activity
public class UnitActivity extends TabActivity {
@Override
public void onCreate(Bundle savedInstanceState) ...
2
votes
0answers
795 views
Strange options menu behavior in Android TabActivity
I have a TabActivity with four tabs (each is its own Activity). Each tab defines its own onCreateOptionsMenu (and in some cases, onPrepareOptionsMenu). When each tab is loaded, an AsyncTask is kicked ...
2
votes
2answers
788 views
NPE when drawing TabWidget in android (only on HTC Magic?)
I've received report from the user of an app I've written that he gets FC whenever starting a certain activity. I have not been able to reproduce the issue on the emulator or on my HTC Hero (running ...
1
vote
1answer
40 views
how to remove default view of tabbar in android
here i need to disply same tabbar in all activities.my tabbar conatain 4 tabs home,contact,callus,about.inside tabs again i have some buttons.here tabbar working fine.but when i run the app that time ...
1
vote
0answers
99 views
Holo Dark TabWidget style for Holo Light Theme
I've got a custom theme that inherits from Theme.Holo.Light.DarkActionBar and I'm trying to change the theme's tabWidget style so it to look like if the theme was Theme.Holo Dark.
I've tried this in ...
1
vote
3answers
35 views
Why keyboard appear after the TabBar?
In My application there is tabBar and the Edittext.
See below image:
Normal Screen:
And Image After press on edittext:
Now why this tabbar goes up with the keyboard.
I want it to be remain fix ...
1
vote
1answer
50 views
How to get rid of line under Tab in 2.1?
Is there any way I can remove the small line that appears under tabs for android 2.1?
I have found the solution for for 2.1++ versions but couldn't find anything for android 2.1 or less.
...
1
vote
1answer
85 views
Android Show/Hide Tabwidget On button Click
Hey can we hide/show tab layout on button click which will be placed below the tab widget it self.
Eg :
When i try to hide - setVisible(View.GONE) the tabwidget whole screens goes black.
1
vote
2answers
64 views
Do not want to highlight tab by default
I have a layout with image and listview. Below them i need to add tabs.
When i used tab widget it is highlighted first tab and displaying that tab activity result below the tabs.
So i have to stop the ...
1
vote
1answer
64 views
Switch TabActivity inside of an activity Android
I am trying to change may current Tab. I search for fitting problems but it not solved my own one.
I have a Tab activity like this
<!-- language: java -->
public class myTabActivity extends ...
1
vote
1answer
36 views
How can i have a tab into a tabHost without a view in the tabWidget?
I wanna hide 1 tab indicator View in a tabHost , cause i'll use another button to do it . The problem comes when i hide it this way:
...
1
vote
2answers
73 views
How To Remove Tabwidget oF A TabHost Temporarily?
I am developing an app where i used TabHost. Inside my TabHost, there are four tabs. Each tab has its own ActivityGroup. Now, what i want is, in a Acitivty inside one of my ActivityGroup under a tab, ...
1
vote
1answer
31 views
Android how to approach to load data once?
This is a general question in my mind. It might sound silly but I am wondering whether is possible or not.
Basically I have a tabwidget and when the one of the tabs is clicked it retrieves contacts ...
1
vote
0answers
102 views
PreferenceActivity within TabWidget
Within my program I have a PreferenceActivity as one of my tabs. I do the following.
public class settings extends PreferenceActivity{
// On Create
@Override
protected void ...
1
vote
2answers
136 views
Android Tabs: Acitivities or Views?
I'm trying to write a little Android application to store recipes as practice. To add a new recipe, I'm trying to use tabs. There are three tabs,
Ingredients
Steps
Media
I'd like "Ingredients" ...
1
vote
1answer
111 views
How to add many tabs to the tabwidget
Whats the best way to add many tabs to the tadwidget? I need to add at least 7 tabs, and I dont want them to look too tight. Is there some other component to do this?
1
vote
1answer
149 views
Make the size of the TabWidget bigger
I have some default size for the content and the tabwidget, well I have custom views in the tabwidget and I want to make him a little bit bigger. How can I do this ? also I need to know how to change ...
1
vote
1answer
47 views
How to pass an int to an Activity when created in a TabWidget in Android?
I started with the TabLayout tutorial from here.
I created a ListActivity class (ListAct) to be used as a Tab. The only difference between the Tabs is the used Layout:
in the onCreate I use ...
1
vote
1answer
117 views
How to make unordinary shape for TabHost?
I need to create a specific shape for the Tab. It should look like this
Is is possible to create it via shape? Or just to use it as an image?
I also saw that some people use this way when they ...
1
vote
1answer
243 views
TAB Layout Width
I am stuck in my xml code
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
I ...
1
vote
3answers
542 views
Android TabWidget remove line at the bottom
Sorry for my English)
My class extends TabActivity. How remove divider, which place after TabWidget? or how setup color for it?
Thanks!!