Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
8answers
10k views

Where can I find Android Tab Icons

Does anybody know of a website where I can find Android TabHost icons? (free or paid)
12
votes
5answers
9k views

Android. How to change Activity within a Tab

Following situation: I have TabActivity with e.g. three tabs, TabA, TabB, TabC. There are a button in activity (Act_C_1) of TabC. So if the user clicks on that button, another activity (Act_C_2) ...
12
votes
3answers
5k views

Android: TabHost without TabActivity

I want to create tabs without extending TabActivity. (The reason is that TabActivity cannot handle a custom titlebar as it seems). I have public class startTab extends Activity { @Override public ...
8
votes
4answers
2k views

How to reference child activity from TabHost to call a public function?

I have a TabHost with two child activities in it (in two tabs). I also implemented a public function in one of these activities that i would like to call from my parent (TabHost), to trigger some ...
8
votes
4answers
10k views

Tab Layout tutorial incomplete?

I've been trying to implement the tab UI described in this tutorial: http://developer.android.com/intl/de/resources/tutorials/views/hello-tabwidget.html I follow all the steps described in the ...
8
votes
4answers
16k views

Issues with Android TabHost Example

I have been attempting to implement the 'advanced' tabwidget example from google. But, when it tries to call tabHost.addTab(spec); I get a stack trace from the debugger. Sorry, I don't have the ...
7
votes
1answer
606 views

InputMethodManager holds reference to the tabhost - Memory Leak - OOM Error

View hierarchy is as follows TabActivity -> ActivityGroups -> Activities. Using MAT I found that TabWidget is referenced by TabHost which is referenced by InputMethodManager, hence TabWidget is ...
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
4answers
11k views

iPhone- like tab bar in Android?

In iPhone we can create a view that has a tab bar and make it the root view of the application then use the tab bar to navigate through sub views. what is the most close approach to this in Android? ...
7
votes
1answer
892 views

EditText and TabHost do not like each other

I have a layout with EditText and TabHost containing 2 tabs. Android 1.6. I use hardware keyboard in following case. Steps to reproduce: When activity is displayed the EditText gains focus. As ...
7
votes
8answers
12k views

Android - iphone style tabhost

Is it possible to style the Android Tabhost to look like that of the iPhone? If not, is there any open source code that can show how to create Bottom Tabs for Andoid ?
6
votes
2answers
415 views

Looking for a universal TabHost style that will work on Android, HTC Sense, Samsung, etc. skins

The default style for the Android TabHost works fine for straight Android systems. However, on HTC Sense, they use dark text on a dark background, which is unreadable. What's the easiest way to ...
5
votes
2answers
3k views

How to programmatically switch tabs using buttonclick in Android

I have been struggling with this for a few days now. I'm trying to switch tabs programmatically upon a button click. My program works flawlessly if I just use the tabs to change activities, but ...
5
votes
2answers
3k views

Create Smaller Tabs in Android

I am trying to create smaller tabs in android -- but I can't seem to get it to work because all that happens when I create a smaller tab is that it shows the bigger tab -- but without a drawable. ...
5
votes
2answers
5k views

android: using ActivityGroup to embed activities

Im in the conceptualizing/design phase of building an app and i've hit a bit of a snag. Essentially i was looking for a way to embed one activity into the UI of another similar to how a ...
5
votes
2answers
2k views

Modify tab indicator dynamically in Android

My application needs to update tab indicator dynamically, I'm trying to do this by invoke TabSpec.setIndicator(), but it doesn't work. Here is my code: In onCreate method of TabActivity: tabHost = ...
4
votes
1answer
108 views

Android Title bar leaving space in when application is resumed

I am using a Tab Host in my Android App. I have the Titlebar hidden. When I leave the App and resume to it, I have some strange behaviour. If I resume to a tab using a list activity with ...
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
1answer
342 views

Android - onTabChanged not being invoked upon selecting a different tab

Thanks for checking out my inquiry! I have implemented a tab environment as illustrated below. It seems to work as I expected except that it never executes the onTabChanged method. I have found ...
4
votes
5answers
6k views

Tabhost tutorial broken?

I have been trying to do the TabHost tutorial in the SDK but for some reason, is appears to break. On Step 4 I copy and paste the xml code, I get an error that prevents it from inflating properly. the ...
4
votes
1answer
1k views

How can I use a wrap a TabHost containing a MapView that also displays an AdMob view below it?

I'm very new to Android (like 2 days), but I'm experienced with other layout toolkits. I'm trying to put an AdView below a TabHost, and it seems that I can either get the TabWidget or the AdView to ...
4
votes
2answers
358 views

Android - Tab Navigation <while Spanning a new activity>

I have defined a HomeActivity with three tabs and each tab is a seperate activity.I used the example in the android developer site. ...
4
votes
2answers
4k views

Android Exception: Did you forget to call 'public void setup (LocalActivityManager activityGroup)'

MyCode: public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ...
4
votes
1answer
2k views

Problem with TabHost UI layout

What I'm trying to do is create a layout like this: +--------+ Search |EditText| [Button] +--------+ +---------+ |Tab 1 |---------+ | |Tab 2 | ...
3
votes
1answer
156 views

Switching from TabHost to Fragments with Viewpager: Where to put all my Code

So until now i've used TabHost for my App to create 3 Tabs. Each Tab is represented by an Activity in which i get the layout via setContentView(R.layout.something) from an XML file. So 3 Tabs, 3 ...
3
votes
3answers
174 views

Activity in TabHost

I use a TabHost. The below code to call AActivity. intent = new Intent().setClass(this, AActivity.class); spec = tabHost.newTabSpec("A").setIndicator("A", ...
3
votes
2answers
170 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
708 views

Android ActivityGroup back first activity on click

I have an application with a TabActivity containing ActivityGroup. Each tabs works fine, but for one specific tab I want to go back to the first child activity when there's a click on it (whenever we ...
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
386 views

Android Tabs & Intents

I have a auto-complete textbox in which the user makes a selection. From here I want to load a tabbed layout which is based on the user selection. The problem is I cant figure out a clean way to pass ...
3
votes
3answers
1k views

Starting an AnimationDrawable in Android

Where should I start an AnimationDrawable that needs to animate when the activity is shown? The developer guide recommends using onWindowFocusChanged, but this isn't always called when the activity ...
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
3k views

understanding Activity's setContentView

I need to create all the UI programmatically "on demand", this means I can't use any XML. This is the pseudo code of what I do: View v = new MyView(); activity.setContentView(v); tabHost = new ...
3
votes
2answers
677 views

Automatically add “More…” Tab in Android

I'm writing an application which contains many tabs, and sometimes the number of tabs may exceed five. So I want to make it behave like iPhone, which is, move additional tabs to a "More..." tab. I ...
3
votes
2answers
2k views

WebView inside Tab hiding the tabWidgets

I'm having trouble with a WebView always filling the full screen and thus covering my tabs. Here is my code for the tabhost.. public class tabNZBMobile extends TabActivity { public void ...
2
votes
1answer
31 views

how to design tab which onselect comes in center of a tabhost

I just encountered a problem in layout design with tabhost. i need exactly the same design so that on selecting a tab it will come in cented of the screen. with design like in these pictures.
2
votes
1answer
32 views

Dont want to show Tab Layout on perticular tab click

I have used a TabHost in my application with three tabs suppose A, B and C... In general when we click on any tab it will open new activity "with TAB LAYOUT", but i want to do something different ...
2
votes
1answer
97 views

How to design a iPhone like menu/button in android at the bottom?

I have googled this, most of the solutions are using: 1.TabHost with customized style which would cover the separate line between each tab to archive the requirement. 2.On the android developers ...
2
votes
0answers
172 views

MapActivity in TabHost Fragment disappearing after tab switch

I'm trying to display a map in a set of tabs, using fragments. The problem I'm having is the map activity disappears if the user navigates to another fragment, then back. How can I display a ...
2
votes
1answer
392 views

Your content must have a TabHost whose id attribute is 'android.R.id.tabhost'

I have a problem: Java Code package android.smile.matteo.spesaPRO; import android.app.TabActivity; import android.content.Intent; import android.os.Bundle; import android.widget.TabHost; public ...
2
votes
3answers
191 views

How to switch or change between the tabs in android sdk graphical layout?

I am trying to change or switch between two tabs that I have within the eclipse graphical layout so that I can see the elements on the other tab. Is this possible? the only way I could see of doing ...
2
votes
1answer
52 views

Start android app in a specific tab

Android Question is: i got got an tabhost with 4 tabs(see code below) and i got a button in MainMenuActivity class. THe button is set up with a onclick listener and if it is clicked i want it to go ...
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
437 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
2answers
355 views

findViewById on Custom Title Bar within Tab Activity

I have a custom title bar set on my TabActivity. The custom title bar contains a TextView and an ImageView in it. The tabHost has multiple tabs. What I want to do is to access the ImageView resource ...
2
votes
1answer
280 views

Webview in TabHost = Starting as black screen

I'm trying to use a webview inside a tabhost that has 4 tabs - all linked to the same webview. This is great except for one problem: At start up the webview is black. Clicking tab 2,3 or 4 makes it ...
2
votes
1answer
246 views

How can I return to a child activity, after finishing OAUTH for twitter?

For my application there is one tab host with 5 different activities for 5 tabs. One of those is actually an activity group, which contain 4 child activities, and users can go back and fro for these ...
2
votes
1answer
203 views

Android TabHost Syntax

I'm very new to developing on Android and the Java language in general and I can't seem to find an explanation on why the following statement has "(TabHost)" after the "=": TabHost ...
2
votes
2answers
336 views

Why does the first tab activity in Android live forever?

I've created a simple TabActivity which builds tabs at runtime reading some JSON data. At the moment I'm initializing an empty ListActivity with dummy random items for each tab just to see that ...
2
votes
1answer
286 views

Android TabBar - Slides up along with the keyboard opening up

Is there a way to not have the tab bar slide up along with the keyboard when a user touches the textbox in a screen? Right now, in the default implementation, along with the keyboard opening up, the ...

1 2 3 4 5 9