0

我正在尝试创建一个与 facebook android 应用程序有点相似的标题。标题应该在中间有一个标题标题,每边都有一个按钮。

我有标题,但我下面的代码没有显示任何一个按钮。我不确定此信息是否有帮助,但此标题的 TableRow 布局占用了大量高度空间。它曾经包裹直到标题的高度,直到我尝试添加按钮。

<TableLayout 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"
tools:context=".MainActivity" >

<TableRow
    android:id="@+id/tableRow1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:background="#008000" >

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <Button
            android:id="@+id/menuButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_toLeftOf="@+id/HeaderTextView"
            android:text="Button" />

        <TextView
            android:id="@+id/HeaderTextView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/header"
            android:textAppearance="?android:attr/textAppearanceLarge"
            android:gravity="center"
            android:textColor="#FFF"
            android:textStyle="italic" />

        <Button
            android:id="@+id/infoButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_toRightOf="@+id/HeaderTextView"
            android:text="Button" />

    </RelativeLayout>

</TableRow>

</TableLayout>
4

2 回答 2

2

这对我有用。无论出于何种原因,android:layout_weight="1"它都会起作用。

<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1" >

        <Button
            android:id="@+id/menuButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:text="Button" />

        <TextView
            android:id="@+id/HeaderTextView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:text="This is the title"
            android:textAppearance="?android:attr/textAppearanceLarge"
            android:textColor="#FFFfff"
            android:textStyle="italic" />

        <Button
            android:id="@+id/infoButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:text="Button" />
</RelativeLayout>
于 2013-11-01T05:50:06.927 回答
0
<TableLayout 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"
  tools:context=".MainActivity" >


<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical" >

<Button
    android:id="@+id/menuButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:text="Button" />

<TextView
    android:id="@+id/HeaderTextView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:layout_toRightOf="@id/menuButton"
    android:layout_toLeftOf="@+id/infoButton"
    android:text="headersfasfsdfsdfsdfsdfsdf"
    android:textColor="@android:color/black"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:gravity="center"
    android:textStyle="italic" />

<Button
    android:id="@+id/infoButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:text="Button" />

</RelativeLayout>

</TableLayout>
于 2013-10-31T13:08:46.007 回答