Use this tag for questions related to a Subactivity, an Android activity that is initiated inside the parent activity.
Questions tagged [subactivity]
35 questions
0
votes
1 answer
how to call an activity which extends the baseactivity
i am writing one activity class like below
public class HeaderFooter extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.headerfooter);
…

madan V
- 844
- 3
- 19
- 40
0
votes
1 answer
SubActivity inside another SubActibity
I am working on a mediaPlayer app for which I am using ListViews for my playlist. I have the main activity which has the mediaPlayer and when user clicks on the the playlist button, ArtistActivity is launch from which the user can launch…

TitaniuM
- 321
- 1
- 10
- 19
0
votes
2 answers
add ImageView to subactivity programmatically
I have an Activity that has a main.xml with an ImageView.
I then launch an other activity and wand to show the same picture that is in the first activity.
My second activity's layout is created programmatically with linearlayout (ll).
I then use the…

Ari M
- 1,386
- 3
- 18
- 33
0
votes
1 answer
Third sub activity in a Tab not working due to listview in second
I have a TabInterface.java which hosts five tabs.
In one of the tab, I am using subactivities.When I click on the AddBook tab (which extends ActivityGroup) the search book page loads properly. When I click on search button a list of books is…

Sidk
- 25
- 6
0
votes
1 answer
Android, assigning value to variables in onActivityResult method?
I'm trying to retrieve some information from my onActivityResult method, in my case is a picture the user has selected in a subactivity, i believe that is working fine, what i am having problems with is when i try to assign that picture (in form of…

Slacker616
- 845
- 1
- 11
- 20