使用新工具栏的AppCompatActivity主页按钮未正确显示?

时间:2016-09-15 02:29:04

标签: android android-layout xamarin.android android-toolbar

这个问题涉及Xamarin Android并使用C# ,但我认为使用Android Studio的Java开发人员仍然能够理解这个问题并且可能有所帮助。

正如我在网上研究的那样,一切都应该很简单。这里的问题是Toolbar(在v7支持库中)显示在顶部,但Home按钮没有显示我想要的。 我在主布局中有DrawerLayout,单击主页按钮应展开抽屉布局,并且主页图标应切换到左箭头图标(后退图标)。 单击后退按钮应折叠抽屉布局并将图标切换回主页的初始图标。

我现在拥有的是Home按钮始终显示左箭头图标。我认为这是因为我使用了电话SupportActionBar.SetDisplayHomeAsUpEnabled(true); 但如果没有这样设置就没有显示任何内容,那么就没有什么可点击的了。

以下是生成Home按钮的代码,但其Icon始终显示左箭头:

工具栏布局

<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"    
    android:layout_width="match_parent"
    android:id="@+id/mainToolbar"    
    android:background="?attr/colorPrimary"                                   
    android:layout_height="@dimen/ToolbarHeight">  
</android.support.v7.widget.Toolbar>

背后的代码

//here is in OnCreate callback of the main Activity
var toolBar = FindViewById<Toolbar>(Resource.Id.mainToolbar);
SetSupportActionBar(toolBar);
SupportActionBar.SetDisplayShowHomeEnabled(true);
SupportActionBar.SetDisplayHomeAsUpEnabled(true);            
SupportActionBar.SetHomeButtonEnabled(true);

使用上面的代码,如果我提出行SupportActionBar.SetDisplayHomeAsUpEnabled(true);那么没有显示(虽然我想要一些像这样的图标 应用图标显示)。

我希望这里有人能弄明白我想念的地方。 顺便说一下,我在Android 4.4.4上运行代码,虽然我认为这不是Android版本的问题(因为在这种情况下支持库应该可以工作)。

更新 : 主要布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:id="@+id/rootFrame"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent"
   android:orientation="vertical">
  <android.support.v4.widget.DrawerLayout 
      android:id="@+id/main"                                        
      android:orientation="vertical"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      >  
      <!-- main content -->
      <LinearLayout
        android:id="@+id/mainContent"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical">
        <include layout="@layout/MainToolBar"/>
        <FrameLayout android:layout_height="fill_parent"
                   android:layout_width="fill_parent"
                   android:id="@+id/contentFrame"></FrameLayout>
      </LinearLayout>

      <!-- left menu -->
      <android.support.design.widget.NavigationView    
            android:layout_height="fill_parent"
            android:layout_width="wrap_content"
            android:minWidth="@dimen/LeftMenuMinWidth"
            android:layout_gravity="start"
            android:fitsSystemWindows="false"
            android:background="@color/LeftMenuBackgroundColor"    
            android:id="@+id/leftMenu">
            <!-- layout for the menu here ... -->
      </android.support.design.widget.NavigationView>
  </android.support.v4.widget.DrawerLayout>
</LinearLayout>  

设置抽屉监听器的代码 ,这是在我上面发布的工具栏的代码设置之后放置的:

var dl = FindViewById<DrawerLayout>(Resource.Id.main);
//the ActionBarDrawerToggle here is from Android.Support.V7.app
dl.AddDrawerListener(new ActionBarDrawerToggle(this, dl, toolBar, 0, 0));

我希望现在我已经提供了足够的代码。

1 个答案:

答案 0 :(得分:1)

使用ActionBarDrawerToggle时,您需要在初始化后调用SyncState(),以使其在导航按钮上实际设置自己的图标。

还建议您使用Activity OnPostCreate()方法执行此操作,以便在设备轮换期间抽屉打开时可以正确同步