我嘗試在ToolBar中將漢堡包圖標的位置設置爲垂直居中,但無法這樣做。基於ToolBar大小的Android更改漢堡包圖標位置
我根據版面重量製作了ToolBar高度。由於客戶要求,我無法使用ToolBar默認高度。
下面是我的主要活動XML:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1.5"
app:titleTextColor="@color/vodafone_white"
android:background="@mipmap/img_appbar">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<android.support.v4.widget.Space
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="3"
/>
<TextView
android:id="@+id/toolbar_title"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="7"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:textColor="@color/vodafone_white"
android:textSize="35sp"
android:textStyle="bold"
android:gravity="left|center_vertical"
android:text="@string/title_Vodafone" />
</LinearLayout>
</android.support.v7.widget.Toolbar>
<!--Contents-->
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="8.5"
android:background="@color/vodafone_lightGray">
<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:openDrawer="start">
<!-- Layout for content is here. This can be a RelativeLayout -->
<android.support.design.widget.CoordinatorLayout 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/app_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.keybs.vodafoneqatar.views.MainActivity">
<android.support.constraint.ConstraintLayout 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:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.keybs.vodafoneqatar.views.MainActivity">
</android.support.constraint.ConstraintLayout>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
app:srcCompat="@android:drawable/ic_dialog_email" />
</android.support.design.widget.CoordinatorLayout>
<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:headerLayout="@layout/nav_header_main2"
app:menu="@menu/activity_main2_drawer" />
</android.support.v4.widget.DrawerLayout>
</RelativeLayout>
</LinearLayout>
有沒有什麼辦法。我在:
要麼讓這個
ActionBarDrawerToggle
按鈕與一些左垂直居中使圖標適合白色區域的中心。或者創建一個自定義控件作爲此
ActionBarDrawerToggle
按鈕的替代項?
需要幫助,因爲我是Android開發新手。
嘗試添加'機器人:=了minHeight「100dp」'...在你的'android.support.v7.widget.Toolbar'..then它將在工具欄的中間對齊。 – rafsanahmad007
@ rafsanahmad007感謝您的快速響應。我嘗試將最小高度設置爲100dp。現在切換按鈕顯示垂直居中。有什麼方法可以爲此切換按鈕設置左邊距? –