我有两个ImageButtons,我试图将一个堆叠在另一个上面。我本质上想制作一个带有两个大按钮的屏幕,每个按钮占用50%的可用空间。代码如下。这是对它产生的布局的捕获http://imgur.com/cQT0W.png我在父级上使用了layout_gravity和gravity。使用layout_height = fill_parent设置两个chidren不起作用,也不会将父项的引力设置为fill_vertical。
<!-- Notes tab -->
<LinearLayout android:id="@+id/tabNotes"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="6dp"
android:orientation="vertical">
<ImageButton android:src="@drawable/ic_btn_speak_now" android:id="@+id/imgSpeakNow"
android:background="#FFFF00"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<ImageButton android:src="@drawable/ic_btn_compose" android:id="@+id/imgCompose"
android:background="#FF00FF"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
答案 0 :(得分:1)
使用android:layout_weight;将两个按钮设置为具有相同的值。
使用RelativeLayout而不是LinearLayout也可能会有所帮助。