0

中心我用這個例子有兩個NavigationViews建立一個佈局:工具欄是不是在AppBarLayout

http://v4all123.blogspot.de/2016/03/simple-example-of-navigation-view-on.html

它工作正常。但是,在本網站的演示中,您可以看到,工具欄並不是100%。左邊的按鈕比右邊的邊框有更多的空間。

Take a look to the screenshot from Android Studio.

我試圖居中每個視圖但要獲得剩下同一空間的唯一途徑,正確的是填充添加到右側。但我無法相信這是將其置於佈局中間的唯一方式。

是否還有另一個把按鈕和視圖置於工具欄中的技巧?

<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:layout_width="match_parent" 
android:layout_height="match_parent" 
android:fitsSystemWindows="false" 
tools:context=".frontend.MainActivity"> 

<android.support.design.widget.AppBarLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:background="@android:color/transparent" 
    app:elevation="0dp" 
    android:gravity="center"> 

    <android.support.v7.widget.Toolbar 
     android:id="@+id/toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="?attr/actionBarSize" 
     android:background="?attr/colorPrimary" 
     android:layout_gravity="center_horizontal" 
     android:gravity="center_horizontal" 
     app:popupTheme="@style/AppTheme.PopupOverlay"> 

     <RelativeLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:gravity="center"> 

      <ImageButton 
       android:id="@+id/menuLeft" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:layout_alignParentLeft="true" 
       android:layout_alignParentStart="true" 
       android:src="@drawable/ic_menu_white_24dp" 
       android:tint="@color/colorPrimary" /> 
      <TextView 
       android:id="@+id/headerLine" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:layout_centerHorizontal="true" 
       android:layout_centerVertical="true" 
       android:text="Example application" 
       android:textSize="20dp" 
       android:layout_marginLeft="10dp" 
       android:layout_marginRight="10dp" 
       android:textAlignment="center" 
       android:maxLines="1" 
       android:lines="1" 
       android:layout_toRightOf="@+id/menuLeft" 
       android:layout_toLeftOf="@+id/menuRight" 
       android:singleLine="true" 
       android:ellipsize="end" 
       android:textAppearance="@style/TextAppearance.AppCompat.Body1" 
       android:textColor="@color/headerTextColorPrimary" /> 
      <ImageButton 
       android:id="@+id/menuRight" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:layout_alignParentRight="true" 
       android:layout_alignParentEnd="true" 
       android:src="@drawable/ic_menu_white_24dp" 
       android:tint="@color/colorPrimary" /> 
     </RelativeLayout> 
    </android.support.v7.widget.Toolbar> 

</android.support.design.widget.AppBarLayout> 

</android.support.design.widget.CoordinatorLayout> 

回答

1

添加

app:contentInsetStart="0dp" 

您toolbar.This將刪除微胖在它已經在這裏找到答案的工具欄

+0

謝謝。有用。 – chrispi

+0

歡迎使用。編碼 –

0

的左側。請在以下鏈接中找到android:contentInsetLeft="0dp"android:contentInsetStart="0dp"。這將爲你工作。

https://stackoverflow.com/a/32320632/4688535

+0

謝謝。它適用於... app:contentInsetLeft =「0dp」'和'app:contentInsetStart =「0dp」'。 – chrispi

相關問題