我正在尝试自定义操作栏。我想要的是这个
我得到的是
文字不在中心
这是我的XML代码
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<TextView
android:id="@+id/header_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="THE WORD"
android:layout_centerHorizontal="true"
android:textSize="20sp"
android:textColor="@android:color/white"
android:textStyle="bold" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/actionbar_logo"
android:layout_marginRight="20dp"
android:layout_alignParentRight="true" />
</RelativeLayout>
并在代码中
LayoutParams lp = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, Gravity.CENTER | Gravity.CENTER_VERTICAL);
View customNav = LayoutInflater.from(thisContext).inflate(R.layout.action_custom_view, null);
actionBar.setCustomView(customNav, lp);
actionBar.setDisplayShowCustomEnabled(true);
我怎样才能实现这一目标。 感谢。