对齐ActionBar图标

时间:2018-11-23 19:03:19

标签: android android-actionbar toolbar android-toolbar

我遵循了this教程来创建导航抽屉活动。我有以下代码:

活动XML

v-select

活动代码

<?xml version="1.0" encoding="utf-8"?>

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".Activities.DashboardActivity">

<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
>

<android.support.v7.widget.Toolbar
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:background="@color/login_blue"
    android:theme="@style/MyNavbarTheme" />

</FrameLayout>

<android.support.design.widget.NavigationView
    android:id="@+id/nav_view"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:fitsSystemWindows="true"
    app:menu="@menu/drawer_view"
    app:headerLayout="@layout/nav_header"/>

</android.support.v4.widget.DrawerLayout>

但是,菜单图标未与文本对齐(请参见图片)。图标在中心上方。我怎样才能解决这个问题?另外,如何更改标题文本的颜色? enter image description here

1 个答案:

答案 0 :(得分:0)

这就是我设法解决此问题的方法。

我已从我的代码中删除了此

actionbar.setDisplayHomeAsUpEnabled(true);
actionbar.setHomeAsUpIndicator(R.drawable.icon_menu_white);

,并改用它:

 ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
     this, mDrawerLayout, toolbar, R.string.text_in, 
     R.string.text_out);
 mDrawerLayout.addDrawerListener(toggle);
 toggle.syncState();