Today I got another problem using android.
First of all i have an app which has a login activity. so when my credentials are correct, i start a new activity using an intent. so now you see a tabbar. when i call my onTabSelected() method i remove the current fragment and show for example a gridview. if i tap an element in this gridview the fragment is replaced and my app dives deeper into another fragment (an expandable list with another details fragment).
So my problem is if I tap the back button now, the app returns to my very first activity (the login activity) and not to the last fragment which should be the grid view.
public void onTabSelected(ActionBar.Tab tab, FragmentTransaction ft) {
FragmentManager fm = getFragmentManager();
Fragment frag = fm.findFragmentById(R.id.container);
FragmentTransaction tr = fm.beginTransaction();
switch (tab.getPosition()) {
case 1: {//Produkte
ProdukteGrid pg = new ProdukteGrid();
if(frag != null)
tr.remove(frag);
tr.add(R.id.container, pg,pg.getTAG());
tr.addToBackStack(pg.getTAG());
}
... my grid:
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.produkte_gridmain, container, false);
mGV = (GridView) v.findViewById(R.id.gridView1);
mGV.setAdapter(new ImageAdapter(getActivity(), CATEGORY));
mGV.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View v,
int position, long id) {
FragmentManager fm = getFragmentManager();
Fragment frag = fm.findFragmentById(R.id.container);
FragmentTransaction tr = fm.beginTransaction();
switch (position) {
case 0: {
// startActivity(new Intent(MyGrid.this,
// MainActivity.class));
ProdukteList f = new ProdukteList();
tr.remove(frag);
tr.add(R.id.container, f,f.getTAG());
tr.addToBackStack(f.getTAG());
}
break;
}
tr.commit();
}
});
return v;
}
My main layout
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
</FrameLayout>
I hope you can help me..:)
EDIT
for better understanding i added a picture:
You should use
replace
instead ofremove
andadd
fragment
Instead of this :
Use this :
And also check if you
override
onBackPressed
event on your activity. Check code there make sure you are not finishing activity manually.