0

这是我的代码,当我在 Eclipse 中对其进行编辑时,它会在图形布局窗口中显示包含两个按钮radia和tv的中间布局。但是当我在手机或平板电脑上运行它时,中间布局消失并且没有显示。请提供任何帮助,这是我的代码。

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

<RelativeLayout
    android1:id="@+id/outerLay"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android1:background="@drawable/header" >

    <Button
        android1:id="@+id/logout"
        style="?android:attr/buttonStyleSmall"
        android1:layout_width="wrap_content"
        android1:layout_height="wrap_content"
        android1:layout_alignBottom="@+id/button6"
        android1:layout_alignParentLeft="true"
        android1:layout_alignParentTop="true"
        android1:background="@drawable/logout_a"
        android1:onClick="logoutClick"
        android1:textStyle="normal" />

    <Button
        android1:id="@+id/button6"
        style="?android:attr/buttonStyleSmall"
        android1:layout_width="wrap_content"
        android1:layout_height="wrap_content"
        android1:layout_alignParentRight="true"
        android1:layout_alignParentTop="true"
        android1:background="@drawable/search_a" />

    <LinearLayout
        android1:id="@+id/innerlay"
        android1:layout_width="wrap_content"
        android1:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android1:layout_alignBottom="@+id/button6"
        android1:layout_alignParentTop="true"
        android1:layout_centerHorizontal="true"
        android1:gravity="center"
        android1:orientation="horizontal" >

        <Button
            android1:id="@+id/television"
            style="?android:attr/buttonStyleSmall"
            android1:layout_width="wrap_content"
            android1:layout_height="wrap_content"
            android1:background="@drawable/television_a"
            android1:onClick="television" />

        <Button
            android1:id="@+id/radio"
            style="?android:attr/buttonStyleSmall"
            android1:layout_width="wrap_content"
            android1:layout_height="wrap_content"
            android1:background="@drawable/radio_b"
            android1:onClick="radio" />
    </LinearLayout>
</RelativeLayout>

<ListView
    android:id="@+id/listView1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >
</ListView>

4

2 回答 2

1

这里是相对布局

代替

android:layout_width="match_parent"

您可以使用

android:layout_width="fill_parent"

我希望这会奏效......

于 2012-11-23T08:46:57.513 回答
0

您所说的布局是不可见的,请将其 layout_height 或 layout_width 属性或两者都设置为“fill_parent”。

我希望这项工作,因为我得到了我的工作。

于 2013-02-22T20:41:03.287 回答