活动中元素的宽度不对?

时间:2011-12-19 05:25:36

标签: android eclipse dpi

我的应用程序布局设置为480dpi宽,480/4是120.所以,如果我的应用程序顶部有4个按钮,而我设置为120dpi宽,为什么按钮会占用屏幕的一半?!如何让按钮在顶部均匀分布?

在这里,我刚刚在顶部添加了4个按钮:

然后前两个按钮是120 dpi宽:

3 个答案:

答案 0 :(得分:2)

检查一下:

<LinearLayout
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
        <Button
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1">
        </Button>
        <Button
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1">
        </Button>
        <Button
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1">
        </Button>
        <Button
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1">
        </Button>
    </LinearLayout>

答案 1 :(得分:1)

您可以将FILL_PARENT参数用于布局宽度,并为每个按钮添加权重1以获得所需效果

答案 2 :(得分:0)

试试这个

<TableRow android:layout_width="fill_parent"
    android:weightSum="100" android:layout_height="wrap_content">
    <Button android:text="Button" android:layout_weight="25"
        android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
    <Button android:text="Button" android:layout_width="wrap_content"
        android:layout_weight="25" android:layout_height="wrap_content"></Button>
    <Button android:text="Button" android:layout_weight="25"
        android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
    <Button android:text="Button" android:layout_weight="25"
        android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
</TableRow>