0

LinearLayout2番目の子を確認して、プログラムで水平を追加しようとしています

必要なすべての幅を取り、最初の子は残っているすべてのスペースを取ります。

多くのオプションを試しましたが、まだ何も機能していないため、追加するコードはありません。

何か案が?

4

2 に答える 2

0

android:layout_weight="0"2 番目の子に設定します。そして最初の子セットの場合android:layout_weight="1"

于 2012-06-26T10:56:07.980 に答える
-1

ボタン3のテキストを変更してみてください

<?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="1.0" >

    <Button
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Back" />

    <Button
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Read sad s as d" />

</LinearLayout>
于 2012-06-26T10:49:30.247 に答える