如何编辑我的按钮

时间:2017-09-16 11:23:10

标签: android

我尝试使用带有4个按钮的LinearLayout,但最后一个被剪切了。如何编辑我的代码以获得与所有智能手机解决方案相对应的按钮宽度 enter image description here

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="0.2"
    android:gravity="center_horizontal"
    android:orientation="horizontal">

    <Button
        android:id="@+id/red"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="RED" />

    <Button
        android:id="@+id/blue"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="BLUE" />

    <Button
        android:id="@+id/yellow"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="YELLOW" />

    <Button
        android:id="@+id/green"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="GREEN" />
</LinearLayout>

由于

3 个答案:

答案 0 :(得分:0)

通过调整contentType

,使用weightSum获得平均分割的布局

尝试一次:

layout_weight

答案 1 :(得分:0)

在所有按钮中添加<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:weightSum="4" android:gravity="center_horizontal" android:orientation="horizontal"> <Button android:id="@+id/red" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" android:text="RED" /> <Button android:id="@+id/blue" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" android:text="BLUE" /> <Button android:id="@+id/yellow" android:layout_width=match_parent" android:layout_height="wrap_content" android:layout_weight="1" android:text="YELLOW" /> <Button android:id="@+id/green" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" android:text="GREEN" /> </LinearLayout> </LinearLayout> 并添加

width="0dp"

到所有按钮

答案 2 :(得分:0)

首先,在android:weightSum="4"中设置LinearLayout

并在android:layout_width="Odp"中设置android:layout_weight="1"Button

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:weightSum="4"
    android:gravity="center_horizontal"
    android:orientation="horizontal">

    <Button
        android:id="@+id/red"
        android:layout_width="Odp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="RED" />

    <Button
        android:id="@+id/blue"
        android:layout_width="Odp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="BLUE" />

    <Button
        android:id="@+id/yellow"
        android:layout_width="Odp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="YELLOW" />

    <Button
        android:id="@+id/green"
        android:layout_width="Odp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="GREEN" />
</LinearLayout>
</LinearLayout>