操作栏自定义视图无法正确定位

时间:2014-03-06 13:09:04

标签: android actionbarsherlock

我正在尝试自定义操作栏。我想要的是这个enter image description here

我得到的是enter image description here

文字不在中心

这是我的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);

我怎样才能实现这一目标。 感谢。

0 个答案:

没有答案