我没有使用任何填充或边距的代码。但是这个距离有。我怎么能删除这个距离? .................................................. .......................
这是我的代码>
<android.support.design.widget.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<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="wrap_content"
app:layout_scrollFlags="scroll|enterAlways">
<ImageView
android:id="@+id/back_arrow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="start"
android:background="?attr/selectableItemBackground"
android:clickable="true"
android:focusable="true"
android:src="@drawable/ic_arrow_forward_white_24dp" />
<TextView
android:id="@+id/toolbar_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:ellipsize="end"
android:singleLine="true"
android:textColor="@color/grey_50"
android:textSize="18sp" />
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_news" />
答案 0 :(得分:0)
更新你在ImageView标签中写的行。
使用
android:layout_gravity="end"
而不是
android:layout_gravity="start"
答案 1 :(得分:0)
问题在于这条线。
getWindow().getDecorView().setLayoutDirection(View.LAYOUT_DIRECTION_RTL);