A screen that contains and runs multiple embedded activities
Questions tagged [activitygroup]
191 questions
0
votes
1 answer
Android Tab group Activity Show And Hide Bottom Tab
Android Tab group Activity go to next Activity from Previous Activity ..How to Hide The Bottom Tab? And while coming from next Activity to Previous Activity I have to Show the Bottom Tab.

Vela
- 87
- 11
0
votes
1 answer
onActivityResult in Activity group
the on ActivityResult() method,written in a childActivity never invoked
My TabGrpActivity extends ActivityGroup.
public class TabGroupActivity extends ActivityGroup
{
private ArrayListmIdList;
@Override
protected void onCreate(Bundle…

ranjith
- 4,526
- 5
- 27
- 31
0
votes
1 answer
Contextmenu in Activity Group
i am using a Activity Group for a tab group.
one of the child Activity in a tab group Activity contains a Contextmenu. but when i click on the menu item, the code which written under the context menu item selected didn't run.
the code which i was…

Vikky
- 933
- 2
- 15
- 29
0
votes
1 answer
Using activitygroups, how to switch to a deeper activity within a different tabhost
If I was to rewrite this again, I would use fragments but instead im using the following setup:
Activites in the Tabhost are managed by ActivityGroups
I've TabA, TabB and TabC
By default, the main activity is TabB so this is the landing page
When…

user1859465
- 883
- 1
- 11
- 28
0
votes
1 answer
Android ActivityGroup Back Button
I have a small issue. I have looked all over the internet but I cannot find a solution to my problem. The problem I have is:
I have a TabHost that has 3 tabs. The first tab opens Activity A. In Activity A, I can press in a listview and it will…

Sohel Mansuri
- 564
- 2
- 6
- 18
0
votes
1 answer
Android ActivityGroup lifecycle deprecated?
So from a few days I've seen warning in my whole application about super.onPause(), super.onDestroy(), super.onResume() and etc. has been deprecated. I want to ask is if that means that in the future these methods will not be invoke as they were…

hardartcore
- 16,886
- 12
- 75
- 101
0
votes
1 answer
Android 4.0 ActivityGroup and FrameLayout Tabs
I have an app that uses an ActivityGroup and FrameLayout to show activities and tabs.
Everything works fine on devices pre android 4.0.
However, when using a device with 4.x the tabs are not showing. It's just a gray area.
Does anyone have any idea…

Rob
- 455
- 3
- 8
0
votes
1 answer
TabActivity open Intent with ACTION_View in android
facing a problem with TabActivity, I have 5 tabs in may tabActivity to one tab i am playing the YouTube Video using Intent wiht ACTION_VIEW. When i select that tab first time its open the browser and play my Video but next time its not response me.…
0
votes
0 answers
Android: TabActivity/TabHost with ActivityGroup : Error occurs when creating PreferenceActivity Dialog and Dialog from click button on Custom Listview
I implement a TabActivity (TabHost) with ActivityGroup based on this website http://ericharlow.blogspot.com/2010/09/experience-multiple-android-activities.html
I have 2 questions about implement this.
First question, Using TabActivity with…

Coco Tan
- 47
- 1
- 8
0
votes
1 answer
android - navigate to child activity in activity group in tabhost
I have an application with a tabhost and one of the tabs is a ActivityGroup.
I want to navigate from Activity A1 in ActivityGroup GroupA to Activity B2 in ActivityGroup GroupB.
The main activity in GroupB is B1, but i want to go directly to B2.
I…

dumazy
- 13,857
- 12
- 66
- 113
0
votes
1 answer
Using EditText in Activity Group
In my application i am using tabhost. And to control different activities i am using activity group. I have Activity A from which i am going to activity B. Activity B contains Edit Text, Spinner, Button etc. Now when i scroll the Activity B and…

user1549971
- 119
- 2
- 5
0
votes
1 answer
OnActivityResult is not calling in TabGroupActivity
I have an tabactivity with four tabs
Home->Tab1->Activity1->Activity2
In Activity2 I have a text box. When I click textbox I am showing CalenderActivity like below
When click date it has to display the date in text box; for that I write…

LOKESH K V
- 144
- 8
0
votes
1 answer
How to pass values to parent tabgroupactivity?
I have one tabGroupActivity. in this tabGroupActivity I start a new activity called "pideInformacion", in this way:
Intent intent = new Intent(getParent(), pideInformacion.class);
TabGroupActivity parentActivity =…

jcamacho
- 818
- 2
- 12
- 25
0
votes
1 answer
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 buttons.
Basically I need an activity with a layout…

Greg
- 1,152
- 1
- 12
- 28
0
votes
1 answer
ActivityGroup in Tab - Back Button
Java answers fine, I tend to use C# for Android.
In my ActivityGroup I have this method which starts and shows a child activity:
public void StartChildActivity (string Id, Intent intent)
{
intent.AddFlags (ActivityFlags.ClearTop);
…

Ian Vink
- 66,960
- 104
- 341
- 555