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">

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐