因此,我在主屏幕上有一个自定义的工具栏,该工具栏内有一个RelativeLayout
。我将layout width
设置为match_parent
,相对布局的父元素只是屏幕的宽度。
由于某种原因,它不适合屏幕的宽度,因为左边缘距屏幕边缘有一定距离。我不确定为什么会这样,但是这会使RelativeLayout
中的定位更加困难。
这是我的.xml
<android.support.v7.widget.Toolbar
android:id="@+id/products_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@drawable/bg_gradient"
app:layout_constraintStart_toStartOf="parent"
app:titleTextColor="#000000">
<RelativeLayout
android:id="@+id/topRL"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout_editor_absoluteX="16dp">
<TextView
android:id="@+id/toolbar_title"
android:layout_width="72sp"
android:layout_height="37sp"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_alignParentEnd="true"
android:layout_marginStart="137dp"
android:layout_marginTop="11dp"
android:layout_marginEnd="159dp"
android:fontFamily="@font/veganstyle"
android:gravity="center"
android:text="BL"
android:textAlignment="center"
android:textColor="#efefef"
android:textSize="20dp"
android:textStyle="bold" />
</RelativeLayout>
</android.support.v7.widget.Toolbar>
这是显示我在说什么的屏幕截图。
如您所见,RelativeLayout
周围的蓝框不在屏幕边缘,也不会让我将其带到边缘。
RelativeLayout
或其父级都没有填充或边距,因此我很困惑为什么这是一个问题以及如何解决。
答案 0 :(得分:1)
您需要在ToolBar
app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"
因此,布局应类似于以下内容。
<?xml version="1.0" encoding="utf-8"?>
<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/products_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorPrimary"
app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"
app:titleTextColor="#000000">
<RelativeLayout
android:id="@+id/topRL"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/toolbar_title"
android:layout_width="72sp"
android:layout_height="37sp"
android:layout_centerInParent="true"
android:text="BL"
android:textAlignment="center"
android:textColor="#efefef"
android:textSize="20dp"
android:textStyle="bold" />
</RelativeLayout>
</android.support.v7.widget.Toolbar>