如何删除工具栏中的空白?

时间:2019-01-13 21:28:03

标签: android toolbar android-toolbar

这是我在android studio中的设计和蓝图的屏幕截图: toolbar layout

如何删除空白空间?

我不能保证金。

我使用工具栏和上面的RelativeLayout

XML代码:

<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/Toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/Purple">

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal">


    <TextView
        android:id="@+id/Toolbar_TextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:textColor="@color/White"
        android:textSize="20sp"
        app:fontFamily="@font/bnaznnbd" />

    <ImageView
        android:id="@+id/Toolbar_ImageView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:contentDescription="@string/logo_in_toolbar" />

    <android.support.v7.widget.SearchView
        android:id="@+id/Toolbar_SearchView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:searchIcon="@drawable/ic_search_black_24dp" />

    <ImageButton
        android:id="@+id/Toolbar_info_ImageButton"
        android:layout_width="30dp"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:background="@color/Purple"
        android:contentDescription="@string/info_imagbotton_toolbar"
        android:src="@drawable/ic_info_outline_black_24dp" />

    <ImageButton
        android:id="@+id/Toolbar_setting_ImageButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:background="@color/Purple"
        android:contentDescription="@string/setting_imagebutton_toolbar"
        android:src="@drawable/ic_settings_black_24dp" />
</RelativeLayout>

0 个答案:

没有答案