示例#1
0
 public static void SetDownloadFabViewState(bool hide)
 {
     if (ContentRelativeLayout != null)
     {
         try
         {
             if (hide)
             {
                 ContentRelativeLayout.RemoveView(DownloadFAB);
             }
             else
             {
                 ContentRelativeLayout.AddView(DownloadFAB);
             }
         }
         catch { }
     }
 }
 public void SwapMainActivityLoginView(bool showLoginScreen)
 {
     ContentRelativeLayout.AddView(ViewHelpers.Main.LoginLayout);
 }