带有自定义标题栏的ActionBarSherlock - 重量分布不起作用

时间:2013-05-18 23:48:14

标签: android android-layout actionbarsherlock

我正在尝试使用ActionBarSherlock实现自定义标题栏。标题栏的左右边缘应有两个按钮,中间应有一个文本视图。 textview应该占据两个按钮之间的空间。

我已尝试设置layout_weight,但由于某种原因它根本没有效果。

这是我在res / layout中的自定义布局

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >

<Button
    android:id="@+id/btn_left"
    android:layout_width="0dip"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:text="Left" />

<TextView
    android:id="@+id/header"
    android:layout_width="0dip"
    android:layout_height="match_parent"
    android:gravity="center_horizontal"
    android:layout_weight="4"
    android:text="Header Text" />

<Button
    android:id="@+id/btn_right"
    android:layout_width="0dip"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:text="Right" />

</LinearLayout>

现在所有的元素都浮到左边,我不知道为什么,我做错了什么?

1 个答案:

答案 0 :(得分:0)

尝试使用RelativeLayout而不是使用LinearLayout。

编辑:将中心textview拉伸到按钮(确保将TextView保留为match_parent ..

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent">

    <Button android:id="@+id/leftButton" 
            android:layout_alignParentLeft="true"....

    <TextView android:layout_centerHorizontal="true"
              android:layout_toLeftOf="@id/rightButton"
              android:layout_toRightOf="@id/leftButton"  ....

    <Button android:id="@+id/rightButton"
            android:layout_alignParentRight="true"....


</RelativeLayout>