1
vote
1answer
23 views

java.lang.RuntimeException: Unable to resume activity {packagename.classname}:

I am trying to use camera class in my app. I just want to click a picture and set on the imageview and then posting it on some url. Posting on url working fine but sometime problem occurs while ...
1
vote
0answers
53 views

Update Tabhost tab content

I have a tabhost to which I dynamically add tabs. When I add a new tab I create an intent to launch an activity as the content and add my data to the intent using putExtra. This works fine when I ...
0
votes
0answers
35 views

Tabhost with Activity this application has developed in 2.2

We had developed app in 2.2 in this we used TabActivity in newer version it has deprecated, and we want to use Tabhost with Activity class in this connection i used main.xml file <TabHost ...
0
votes
0answers
121 views

Android TabHost getParent null pointer exception

I've been Android - Switch Tabs from within an Activity within a tab to try and switch tabs from within an activity other than the TabHost. public void switchTabInActivity(int indexTabToSwitchTo){ ...
0
votes
0answers
141 views

Android TabHost with ActivityGroup for startActivityForResult

I got a problem for Android TabHost with ActivityGroup for startActivityForResult as enter code here below: public class MainTabActivity extends TabActivity{ ................. ...
0
votes
3answers
382 views

Android TabActivity: How to start only the activity from the currenttab?

In my activity I have a TabHost. I have 3 tabs and 3 activities for them. How can I start the corresponding activity when I click on a tab? At the moment all three activities starts... If I run ...
0
votes
2answers
75 views

How to start a new activity for a result from a tab activity in android [duplicate]

Possible Duplicate: start Activity from an other Activity with Tabs I have a TabHost containing 3 tabs. Having Act1, Act2, Act3 for 3tabs. Now i want to start a new activity (say Act4) ...
0
votes
1answer
174 views

Android - Issues with tabhost and aligning imageview and textview

Im trying to create a tab host as shown in the attached screen shot but having an issue with the icon image and alignment of text - the image needs to be aligned above the text but all attempts fail; ...
0
votes
1answer
249 views

How to use setCurrentTab method in an activity of tab?

I've been having this problem for 1 week. I have a MainActivity extends TabActivity and A, B two activities in each tab. Now I want to press a button in activity A to set the current page to the tab ...
-1
votes
1answer
177 views

TabHost with different activities

I'm trying to implement an activity which will include TabHost and each tab in it will run\represent a different Activity so if the user press on tab #1 he'll see Activity A and if he'll press on tab ...
2
votes
1answer
51 views

Tabbed activities not working

I have been trying to add three different activities each to a different tab ... One activity is starting the bluetooth discovery and selection of a bluetooth device for pairing up and second one ...
0
votes
0answers
70 views

managing the lifecycle of activities

I faced some troubles while trying to control the lifecycle of my application. The app looks like following: There's a TabHost with 3 Tabs and 3 Activities. It has a menuInflater so the menu is ...
0
votes
1answer
68 views

Creating two tabhosts in one app

I am making an android application in which I use two different tabhosts in two different activities, However I am having trouble differentiating between then and my app stops when I enter the ...
0
votes
1answer
86 views

Debug: How to start an activity using custom Tabs

@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); ...
0
votes
0answers
61 views

How to finish an Activity that is used in a TabSpec, as the child of TabHost

I have Main Activity which contains a TabHost. In the TabHost I have several TabSpec which use an Intent for the content of the tab. At certain points in my code I need to remove a tab from the ...
1
vote
2answers
75 views

Android: Tabs: i was wondering if i should make a new activity/xml for each tab?

I was wondering if i should make a new activity/xml for each tab in my tabhost? I was wondering if this would affect performance and create lag or would it improve performance
0
votes
2answers
192 views

Trying to change color on Tabs in Android

Below is my Tab class. I am trying to change the color of the tabs, when selected and unselected. But the app crashes when I call tabHost.setOnTabChangedListener(MyOnTabChangeListener)?. I can't even ...
0
votes
0answers
222 views

How to pass Data from listActivity to ListActivity Using TabHost on TabChange

Hello Dear HOw are you All i need Help i have Problem Pass Data to Another Activity... i m Using TabHost In Main Class I have 3-Tabb 1(station) 2(radio) 3(favorite) i want to pass Data from ...
0
votes
1answer
390 views

tab host and multiplie activites (UINavigationController equivalent)

I m currently porting iOS App to Android the iOS app uses tabbar + navigation controller (inside each tab) to load mutiples Views I would like to keep the same design on Android , but I m a bit ...
1
vote
1answer
1k views

Android Activity.onWindowFocusChanged doesn't get called from within TabHost

I'm struggling with the problem that the .onWindowFocusChanged() doesn't get called in my custom Activity class. My setup: Two tabs (containing Activity_1 and Activity_2) in a TabHost, where the 2nd ...
0
votes
0answers
285 views

Android Change TextView(layout.main(TabHost)) from Activity opened in TabContent

So I have my main.layout: <TabHost xmlns:android="http://schemas.android.com/apk/res/android" android:id="@android:id/tabhost" android:layout_width="fill_parent" ...
3
votes
1answer
463 views

Access TabHost from another Activity

I need to make a TabHost changeable from all Activitys. I have done some reasearch, but I have not found anything compatible with TabHost. I want to be able to hide the TabHost from another ...
0
votes
2answers
310 views

android tabHost with many activities inside each tab

I have an android app that should go to a different activity when a tab is tapped, but once in that tab, the user should be able to go to different activities [views] inside that tab, I have found ...
1
vote
1answer
1k views

OnActivityResult is not working in TabActivityGroup?

I am using Tab Activity as a main Activity in which it has 4 tabs. One tab is Activity Group which has three buttons. Each button is one activity. I am using camera in one of those activity. I know ...
0
votes
1answer
183 views

Android TabHost with ActivityGroup effect without TabHost

I want to create a tab menu similar to TabHost but I would like to use some other elements, not only buttons in that menu, and also be able to bind some other actions than start new activity to ...
1
vote
1answer
452 views

OnResume not called when hitting back button from Tab Host

I'm running into a pesky issue. I have two tab hosts ... tab host A and tab host B. Each tab host has three tabs (let's call them A1, B1, A2, B2, etc). Tab host B is launched from Activity A2. Anyway, ...
0
votes
3answers
718 views

onActivityResult is newer call in nested activity

I have the next UI hierarhy: FragmentActivity -> Fragment with TabHost and LocalActivityManager -> MyNestedActivity MyNestedActivity places in single tab in Fragment. When I call ...
4
votes
3answers
62 views

Is it possible to download activities online and load them into tabs in Android?

Is it possible to download other people's examples, and load their code into tabs?
0
votes
1answer
223 views

Managing Activities inside ActivityGroup

I am experimenting with TabHost and ActivityGroup when I noticed that if I pressed back on one activity, the whole ActivityGroup is destroyed. As such, I created a list of Views representing my ...
1
vote
1answer
603 views

Android Dashboard Layout with TabHost

I have search and could seem to find anything close to the issue I am having so I figured I would ask. I have a Dashboard layout This is all working correctly What I want to do is have it work as ...
0
votes
1answer
385 views

Transfer value to TAB Activity

I've 4 Activities. The first Activity is used to input data, the second Activity is the TABs main Activity (extends TabActivity) to declare each tab Activity, and the 3rd and 4th Activity is tab ...
2
votes
2answers
661 views

Closing/restarting Activities in TabHost

I'm developing an Android 2.3.3 application which consists of a top-level TabActivity. I'm also adding a number of tabs to the TabHost programatically and giving each one a separate child Activity: ...
0
votes
2answers
683 views

Android: how to open new intent from ListView, hosted in TabHost, inside same FrameLayout?

I looked through tons of articles how to open new Activity from ListView hosted by TabHost. I have a TabHost Activity, one of the tabs has ListView, with clickable list items. On item click, I want ...
0
votes
0answers
125 views

Calling a interface with 2 tabs, from another interface

I need to call an interface with 2 tabs, when clicked on a list item. The two tabs should contain 2 separate activities. I designed to use a class that extends Tab activity to call each tab, and ...
0
votes
1answer
202 views

Display Tab-layout on tab click?

I am having a problem related to android tab layout... I have used 4 Tabs in my application and 4 activities are displayed as the user clicks on particular tab. One of my activity contains grideview ...
0
votes
1answer
93 views

Tabhost, how to get to constructor ? (ANDROID)

Whan I have got a tabhost and impolement the tabs. How I can get to tab constructor to pass some variables? TabSpec architectureSpec = tabHost.newTabSpec("architecture"); ...
0
votes
1answer
807 views

How to refresh TabHost Activity?

I have a TabHost activity as main activity of my app. This TabHost contains 4 activity. How can I refresh this TabHost (or one of my activity which TabHost includes) by clicking on button in another ...
0
votes
0answers
99 views

Debugging the error on Android, crashed at SetContentView

host.addTab(host.newTabSpec("Offers") .setIndicator("Offers", getResources().getDrawable(R.drawable.icon_light)) .setContent(new Intent(this, List_Items.class))); ...
1
vote
1answer
661 views

How to make Custom TabHost in android?

There is a problem please make it solve. I am having 3 tabs in tab-host activity as we all knows on clicking those tabs we will switch to the respective activity say A B or C. but, every ...
1
vote
5answers
8k views

Android Refresh activity when returns to it

I need a little help with refreshing one of my activities in my application. I'm using tab host activity and connecting to web service and downloading some data from one of my child activities. When I ...
1
vote
3answers
274 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, ...
4
votes
1answer
438 views

Fire action on other activity within TabHost? (Android)

I am currently in an Android project where our main view is a TabActivity and each tab is a separate Activity. One is a MapActivity and the other two are ordinary Activities. First note that I think ...
0
votes
1answer
407 views

Ways to implement always on top tabwidget

I have some concerns with how to approach this: background: Main app view has a TabHost that displays different activities. From these activities more activities can be launched that is not part of ...
1
vote
1answer
768 views

when click back button in activitygroup,it doesnt work

In my app,i use a TabActivity with five tabs,each tab contain a ActvityGroup,each ActivityGroup manage more than one Activity.one of ActivtyGroups have two Activies:A and B, when click a button in ...
2
votes
0answers
210 views

TabHost and Out of Memory

I use a tabhost to contain three activities in different tabs. Due to many images for the background UI, this leads to the problem "Out of Memory". Is it possible to destroy other activities which ...
1
vote
1answer
1k views

Android how to putExtra to an activity from TabHost activity?

I have a little problem with sending an extra from one activity to another. I have let's say FirstActivity which starts TabActivity, where I have 5 tabs. When I send putExtra(), from FirstActivity to ...
2
votes
1answer
311 views

TabHost shows default Activity after showing new activity for a while

Thanks for reading. I am facing a problem where when I start a new Activity in my TabHost, the new Activity only shows up for a few seconds before returning to the default Activity in that Tab. I am ...
0
votes
2answers
998 views

Close Activities TabHost launched on exit

I am working on an Android app that uses a TabHost. I used the Google example to get it setup and it works great but I want to force the activities it launches to close when the user clicks exit. Is ...
2
votes
1answer
429 views

How to update current tab activity after finish processing HttpGet query in first tab activity?

I have two tabs application. In first tab I perform an http search query, dysplaying the results and inserting them into database. Second tab shows the data from database. If user perform a search in ...
1
vote
2answers
161 views

Can I have an Activity under a TabHost Without Being Part of that Those Tabs

In other words, say I have a group of tabs Activity 1, 2, and 3 all with their own tabs, but Activity 2 links out to Activity 4 (who does not have its own tab), but I would still like the tabs to ...

1 2