我有这样一个布局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="50dp" >
<TextView
android:id="@+id/title_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_toRightOf="@+id/backToScan"
android:gravity="center"
android:textAllCaps="true"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textStyle="bold" />
<ImageView
android:id="@+id/backToScan"
android:layout_width="35dp"
android:layout_height="35dp"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_marginLeft="8dp"
android:src="@drawable/back_button" />
</RelativeLayout>
现在我加入它successfuly为操作栏自定义视图。 但问题是我不能中心TextView的,我已经使用像Android一样有很多方式:重力=“中心”,机器人:layout_centerHorizontal =“真”,但它不工作。
它总是漂浮到左边。 我怎样才能居中?