使用Android 5的新工具栏,图标显示为切断! 我使用抽屉导航和新工具栏。有什么建议吗?
它似乎在工具栏上方
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="30dp"
android:background="?attr/colorPrimary">
</android.support.v7.widget.Toolbar>
这是抽屉布局
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<include layout="@layout/toolbar"/>
<!-- The main content view -->
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</LinearLayout>
<!-- The navigation drawer -->
<ListView android:id="@+id/left_drawer"
android:fitsSystemWindows="true"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:choiceMode="singleChoice"
android:divider="@color/gray_light_divider_list_drawerNav"
android:dividerHeight="1dp"
android:background="@color/gray_light_background_list_drawerNav"
/>
编辑:在工具栏中添加这两个属性 机器人:layout_height =&#34; WRAP_CONTENT&#34; 机器人:?=了minHeight&#34; ATTR / actionBarSize&#34;
IT看起来很大
答案 0 :(得分:1)
我在抽屉导航中添加了两次工具栏,也在片段中添加了
答案 1 :(得分:0)
工具栏的高度很小。你应该把工具栏的minHeght作为这个
android:minHeight="?attr/actionBarSize"
答案 2 :(得分:0)
Toolbar
的正常高度为56dp。尝试将高度设置为,它看起来应该是正常的。