我想将标题集中在Actionbar中。我创建了一个自定义布局,如果主页图标可见,它会出现在中心但是如果设置为false则标题会向左移动,因此不会出现在中心。
操作栏应该只有标题和菜单选项,并且没有主页图标,这会将用户带回到上一个屏幕。我甚至试过给它留下余量,但它仍然不起作用。
这有什么解决办法吗?
<?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="match_parent" >
<TextView
android:id="@+id/txtTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:ellipsize="end"
android:maxLines="1"
android:text="@string/app_name"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@android:color/white"
android:textSize="@dimen/title_size" />
</RelativeLayout>