A screen that contains and runs multiple embedded activities
Questions tagged [activitygroup]
191 questions
0
votes
1 answer
Tabs with several Activities per tab
I have developed this application which uses an ActivityGroup to switch between Activitys in a tab. I have downloaded the newest AdMob SDK, forcing me to use a targetSdkVersion of 13 instead of 8. Because of that, I get the warning that…

nhaarman
- 98,571
- 55
- 246
- 278
0
votes
2 answers
Android: How to regain focus of EditText when switching between Activities in ActivityGroup
I have an Activity A in an ActivityGroup with an EditText widget. When switching to Activity B (within the same ActivityGroup) and using the back button to go back to Activity A again, i cannot bring up the software keyboard when tapping the…

Dan
- 173
- 2
- 18
0
votes
1 answer
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 activities. However, this causes my previous activity…

Arci
- 6,647
- 20
- 70
- 98
0
votes
2 answers
android acitivitygroup button onClick make applicatoin crash
So im developing a android application and im using a tabhost.
To handle the activity's i created a activitygroup from every tab.
From these "parent" activity's i go to child acivity's.
on this child acitivy i have a page with a spinner and a…

gkenny
- 51
- 7
0
votes
1 answer
Can not start new activity from alertdialog onclicklistener when activitygroup is used
I simply have 2 tabs and used Experience - Multiple Android Activities in a TabActivity as reference.
My class Architecture is like this:
MainActivity extends TabActivity
1.TabGroup1Activity extends TabGroupActivity…

captaindroid
- 2,868
- 6
- 31
- 45
-1
votes
4 answers
Extend Activity and ActivityGroup
I'm writing an application in which i have a set of code which i want to be available in all of my Activities and ActivityGroups. However, to achieve this, I have extended my activities as:
//custom Activity
public abstract class BaseActivity…

waqaslam
- 67,549
- 16
- 165
- 178
-1
votes
1 answer
AlertDialog doesnt work inside ActivityGroup
I have a main activity has three tab ADMINISTRADOR.
in the first tab called me to another activity within a groupactivity with listview when click on each item has to leave for a AlertDialog I have the following error:
05-25 20:06:58.025:…
-1
votes
2 answers
android: How can i set backpress on TabActivity ? where one tab contain only two activity?
I am try to call my OffersActivity to on backpress of offerDetails
Activity.(I am using ActivityGroup and TabActivity).
I am getting error to ArrayIndexOutOFBound...last two i am try to
this to complete but it not done by me..guide me ..to solve…
user2106230
-1
votes
5 answers
How to hide only soft keyboard android
In my application i am using tab activity and activity group. In one of the activity i have edit texts. When the user click on the edit text, soft keyboard appears. But when the user click on the back button the soft key board dismisses and the…

W00di
- 954
- 12
- 21
-1
votes
1 answer
android how to load an intent inside a view
i know that ActivityGroup is able to change the content of a view, but it is about to be decaperate..
and i don't really like Fragment.. is there a way that i can built some kind of my own TabHost ?
a button that will change the content of a…

Asaf Nevo
- 11,338
- 23
- 79
- 154
-2
votes
1 answer
how to add tab like chrome browser
I want to create a TabActivity that works like a browser. When the activity is created, it has two tabs: "Tab1" and "Add Tab". When the "Add Tab" is clicked, it should Add a new tab.
Tab 1 | Add Tab
==> Add Tab is clicked
Tab 1 | Tab 2 | Add…