我有一个自定义对话框,有3个按钮,有时只有一个按钮。当我有3个按钮时,LinearLayout
可以很好地适应这些按钮。但是当我只有一个按钮时,它会将整个宽度提供给一个按钮,使该按钮看起来太大。我想要的是,如果只有一个按钮,它应该只占整个可用宽度的一半,或者应该包装内容(按钮图像。)请参阅以下图像以供参考 -
答案 0 :(得分:3)
请参阅此XML文件,该文件与您的要求类似。只是能够看到不需要的按钮。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" android:weightSum="3" android:gravity="center_horizontal">
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button"/>
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button" />
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button"/>
</LinearLayout>
答案 1 :(得分:1)
为了让一个按钮占据您需要的可用屏幕宽度的一半