[Android] Make sure to change the title accordingly when coming back from the folder browser.

This commit is contained in:
Lioncash 2013-10-02 22:55:16 -04:00
parent 8dfc752780
commit da46da17dc
1 changed files with 6 additions and 1 deletions

View File

@ -110,7 +110,7 @@ public final class GameListActivity extends Activity
* Switches to the {@link Fragment} represented * Switches to the {@link Fragment} represented
* by the given ID number. * by the given ID number.
* *
* @param toPage the number representing the {@link Fragment} to switch to.l * @param toPage the number representing the {@link Fragment} to switch to.
*/ */
public void SwitchPage(int toPage) public void SwitchPage(int toPage)
{ {
@ -121,6 +121,11 @@ public final class GameListActivity extends Activity
{ {
case 0: // Game list case 0: // Game list
{ {
// We use the title section as the browser directory tracker in the folder browser.
// Make sure we flip the title back if we're coming from that fragment.
if (mCurFragmentNum == 1)
setTitle(R.string.app_name);
mCurFragmentNum = 0; mCurFragmentNum = 0;
mCurFragment = new GameListFragment(); mCurFragment = new GameListFragment();
FragmentManager fragmentManager = getFragmentManager(); FragmentManager fragmentManager = getFragmentManager();