Skip to content

Commit

Permalink
Updated MobileNavigationManager following changes on iOS. Related to …
Browse files Browse the repository at this point in the history
…issue #408.
  • Loading branch information
ycastonguay committed Feb 20, 2013
1 parent 31bbd47 commit 75120f2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
11 changes: 7 additions & 4 deletions MPfm/MPfm.Android/Classes/Activities/MainActivity.cs
Expand Up @@ -100,6 +100,11 @@ public void PushTabView(MobileNavigationTabType type, Fragment fragment)
}
}

public void PushDialogView(Fragment fragment)
{

}

public override void OnBackPressed()
{
base.OnBackPressed();
Expand Down Expand Up @@ -199,10 +204,8 @@ private void ShowUpdateLibrary(UpdateLibraryFragment fragment)

#region IMobileOptionsMenuView implementation

public Action OnClickPreferences { get; set; }
public Action OnClickEffects { get; set; }
public Action OnClickAbout { get; set; }
public void RefreshMenu(Dictionary<MobileOptionsMenuType, string> options)
public Action<MobileOptionsMenuType> OnItemClick { get; set; }
public void RefreshMenu(List<KeyValuePair<MobileOptionsMenuType, string>> options)
{

}
Expand Down
Expand Up @@ -45,5 +45,10 @@ public override void PushTabView(MobileNavigationTabType type, IBaseView view)
{
MainActivity.PushTabView(type, (Fragment)view);
}

public override void PushDialogView(IBaseView view)
{
MainActivity.PushDialogView((Fragment)view);
}
}
}

0 comments on commit 75120f2

Please sign in to comment.