android 按钮并排左右,2个按钮并排 - 安卓布局
how can I put 2 buttons side by side, so that they occupy all the width, with a little space between them..I thought a horiz linear layout, with 2 sub linear layouts set to match parent and weight 1,
how can I put 2 buttons side by side, so that they occupy all the width, with a little space between them..
I thought a horiz linear layout, with 2 sub linear layouts set to match parent and weight 1, each of them containing the button.. is there a simpler way? can this be accomplished with relative layouts?
thanks!
解决方案
android:id="@+id/LinearLayout02"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_alignParentBottom="true">
android:id="@+id/Button02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" android:text="Übernehmen">
android:id="@+id/Button03"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Abbrechen">
更多推荐
所有评论(0)