Я пытаюсь расположить две кнопки одна под другой с некоторым отступом. К сожалению, нижняя заполняет весь экран и идет позади верхней. : -S
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="6dip">
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:padding="6dip"
android:layout_weight="1">
<ImageButton
android:layout_width="wrap_content"
android:src="@drawable/gallery"
android:layout_height="wrap_content"
android:scaleType="centerInside"
android:id="@+id/gallery_btn"></ImageButton>
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout2"
android:orientation="horizontal"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:padding="6dip"
android:layout_weight="1">
<ImageButton android:id="@+id/camera_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/camera"
android:scaleType="centerInside" />
</LinearLayout>
</LinearLayout>