Адаптивность дизайна в Android
У меня кнопки адаптируются по ширине под разные экраны, но не по высоте. Вот код xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button"
android:id="@+id/button"
android:layout_weight="1"
android:layout_margin="8dp" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button"
android:id="@+id/button2"
android:layout_weight="1"
android:layout_margin="8dp" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button"
android:id="@+id/button3"
android:layout_weight="1"
android:layout_margin="8dp" />
</LinearLayout>
Как мне сделать адаптацию этих кнопок по высоте?