1

我正在使用Support Android Percentage Library的 RelativeLayout AKA android.support.percent.PercentRelativeLayout,但它在左边缘有额外的边距,就像RelaytiveLayout我没有设置任何边距或填充一样,但它仍然有它,搜索很多并做了任何对其他人有用的事情。 ..但没有解决!

活动主布局代码:

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/mainCoordinatorLayout"
android:layout_height="match_parent"
android:layout_width="match_parent">
<android.support.design.widget.AppBarLayout
    android:id="@+id/mainAppbarLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <android.support.v7.widget.Toolbar
        android:id="@+id/mainToolbar1"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary">
        <TextView
            android:id="@+id/mainTitle"
            android:text="@string/app_name"
            android:textColor="@android:color/white"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>
    </android.support.v7.widget.Toolbar>
    <android.support.v7.widget.Toolbar
        android:id="@+id/mainFlexibleSpace"
        android:layout_width="match_parent"
        android:layout_height="180dp">
       <android.support.percent.PercentRelativeLayout
           android:id="@+id/mainPercentRelativeLayout"
           android:layout_width="match_parent"
           android:layout_height="match_parent">
           <TextView
               android:id="@+id/mainEnterLink"
               android:text="@string/str_mainMessageText"
               android:gravity="center"
               android:textColor="@android:color/white"
               android:layout_width="match_parent"
               android:layout_height="wrap_content" />

       </android.support.percent.PercentRelativeLayout>
    </android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>

有什么帮助吗?查看我渲染的布局代码的这张图片

4

1 回答 1

1

检查工具栏是否也有问题(mainFlexibleSpace)。如果是的话,

在 java 中声明 toolBar 并执行此操作。 toolBar.setContentInsetsAbsolute(0,0);

于 2016-09-01T06:16:48.200 回答