Android中的布局问题

时间:2011-10-24 20:09:12

标签: android android-layout relativelayout tablelayout

我有一个简单的布局,如下所示。我已将父(RelativeLayout)背景设置为图片,子表格布局设置为白色。出于某种原因,当我设置tablelayout的颜色时,它会使父布局变为黑色(或null)。我不确定这里的问题是什么,如果我有线性布局而不是表格布局,情况就是这样。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/mbi33" android:id="@+id/rl" android:clipToPadding="true">
<TableLayout android:id="@+id/tableLayout1" android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_alignParentBottom="true" android:layout_alignParentLeft="true" android:layout_alignParentRight="true" android:background="@color/white">
    <TableRow android:id="@+id/tableRow4" android:layout_width="wrap_content" android:layout_height="wrap_content">
        <Button android:text="Button" android:layout_height="wrap_content" android:id="@+id/button1" android:layout_weight="1" android:layout_width="0dp"></Button>
        <Button android:text="Button" android:layout_height="wrap_content" android:layout_weight="1" android:id="@+id/button2" android:layout_width="0dp"></Button>
        <Button android:layout_height="wrap_content" android:text="Button" android:id="@+id/button3" android:layout_weight="1" android:layout_width="0dp"></Button>
    </TableRow>
</TableLayout>
</RelativeLayout>

对此有任何帮助将不胜感激。

2 个答案:

答案 0 :(得分:1)

您是否在colors.xml文件中指定了颜色?如果您在文件夹中的colors.xml文件中指定了 android:background =“@ color / white”,则可以指定它。确保指定了它。

答案 1 :(得分:0)

更改

  

android:layout_width =“mach_parent”---&gt; android:layout_width =“fill_parent”

     

android:layout_height =“mach_parent”---&gt; android:layout_height =“fill_parent”

它应该有用......

如果没有你可以试试这个加上这个...... android:fillViewport =“true”