Questions tagged [activitygroup]

A screen that contains and runs multiple embedded activities

191 questions
0
votes
1 answer

FragmentActivity as ActiivtyGroup in tabwidget

I have a FragentActivity lets say 'X' in tabhost.Now i want to make it work as activitygroup how can i start another activity 'Y' from this fragmentActivity so that it become part of that tab. The problem is if activity extends ActivityGroup,the…
Hamza Khalil
  • 481
  • 1
  • 7
  • 18
0
votes
0 answers

android backspace issue in activity group

My app uses ActivityGroup to build. There are four sub-activities in the ActivityGroup. No matter it is in which sub-activity, when input keyboard backspace, the sub-activity will always be changed to the first sub-activity that it is the first…
0
votes
1 answer

Create activitygroup using mvvmcross and xamarin.droid

I want to create a activitygroup using mvvmcross and all its glory. But I can not find an example anywhere. With an Activity we use MvxActivity, but there is not a MvxActivityGroup. The reason iam doing it, is because i want to have a tabbar with…
Bjarke
  • 1,283
  • 11
  • 36
0
votes
1 answer

Image doesn't change in child activity using Activitygroup in android

In my app, I' using Tab. There are three tabs. In which 3rd tab is Activity group which has two activities. In first activity, there are two options for user. User can choose image from camera or from gallery. After selecting an image, user should…
Looking Forward
  • 3,579
  • 8
  • 45
  • 65
0
votes
1 answer

onActivityResult is not being called

I'm using Activitygroup concept to handle multiple activities under single tab. What I am doing in first activity of tab, I fetch image from gallery and camera, and after that when user selects image that image should move to second activity but…
Looking Forward
  • 3,579
  • 8
  • 45
  • 65
0
votes
0 answers

Confusion about setting up activity groups

I'm having some trouble with implementing Activity Groups into my code. I have a 4 Radio Buttons at the bottom of my screen . Once one of them gets clicked, I would like the activity window to change, but the MainActivity to stay there so the Action…
Jack
  • 2,043
  • 7
  • 40
  • 69
0
votes
0 answers

When is activityGroup onPause () method is called

I am using ActivityGroup to handle the list of Activities,In the last Activity of the activityGroup,I am using Alert handler to show popup,and flow comes to first activity of Activity Group(On Resume of ActivityGroup is not called) where the code is…
Rakesh
  • 14,997
  • 13
  • 42
  • 62
0
votes
2 answers

Calling activitygroup from customlistadapter

I am working on an android app which is having functionality of tabs. Everything is working fine but I am not able to call activtygroup from listadapter. Here is my code for list adapter: import java.util.ArrayList; import…
Ricky Khatri
  • 952
  • 2
  • 16
  • 42
0
votes
1 answer

Android GroupActivity Backpress trigger Fatal Exception / NullPointerException

I have some problems on BackPressed when using the ActivityGroup under TabHost. To illustrate, first of all, codes are drilled down in layers as follows: TabGroupActivity class The following TabGroupActivity.java is referenced from an online…
pearmak
  • 4,979
  • 15
  • 64
  • 122
0
votes
1 answer

how to stop reload listview in android?

I have two activities in tabgroup fist activity contains listview, when listitem click loading second activity.he my problem is when we press back in second activity first activity list is reloading again is it possible to stop reloading and i need…
sai
  • 2,562
  • 8
  • 31
  • 46
0
votes
1 answer

How to remove all activities from ActivityGroup stack and load the first activity in current tab on tab click event

I created a project long ago using the TabActivity and ActivityGroup (deprecated now). The question is may be simple but first I want to clarify the flow. I have 4 tabs in my Tabhost. I have used the following code to keep track of activity back…
Qadir Hussain
  • 8,721
  • 13
  • 89
  • 124
0
votes
1 answer

android openPanel menu is empty

I have a tabActivity with multiple activities in one tab. The following code work on android 2.3 but it's not working on android 4.2 ActivityStack.java public class ActivityStack extends ActivityGroup { .. @Override public boolean…
just ME
  • 1,817
  • 6
  • 32
  • 53
0
votes
1 answer

Dialog Box in Activity group inside a TabActivity not working

I'm trying to run an ActivityGroup embedded inside another ActivityGroup. (Example : an ActivityGroup inside a TabActivity) This seems to display properly but throw an exception when I'm trying to display a modal box like an AlertDialog.…
SibinF
  • 385
  • 1
  • 7
  • 25
0
votes
3 answers

Soft Keyboard always shows in Activities with ActivityGroup and TabHost using

My application consists of TabHost and ActivityGroup with nested Activities in it. When Activity of ActivityGroup was created or resumed soft keyboard shows immediately. I need it to be show only I click at EditText. My ActivityGroup class: public…
0
votes
1 answer

nested FragmentActivities with ActivityGroup in tabHost

I use FragmentActivities in my Application and need to implement TabHost with nested Activities which can switch between one another. I use ActivityGroup for this purpose: public class CustomActivityGroup extends ActivityGroup { View…