У меня есть проблема с макетом моего приложения.Это макет моего приложения:
<?xml version="1.0" encoding="utf-8"?>
<ImageView android:layout_width="fill_parent" android:layout_height="wrap_content"
android:src="@drawable/tax_calculator_logo"/>
<LinearLayout android:layout_height="fill_parent" android:layout_width="fill_parent"
android:orientation="vertical" android:layout_marginLeft="20dp"
android:layout_marginRight="20dp" android:layout_gravity="center"
android:layout_marginTop="10dp" android:layout_marginBottom="10dp">
<Button android:id="@+id/contactUs" android:layout_height="wrap_content"
android:layout_width="fill_parent" android:text="Contact Us"
android:textSize="20dp"/>
<Button android:id="@+id/contactUs" android:layout_height="wrap_content"
android:layout_width="fill_parent" android:text="Contact Us"
android:textSize="20dp"/>
<Button android:id="@+id/contactUs" android:layout_height="wrap_content"
android:layout_width="fill_parent" android:text="Contact Us"
android:textSize="20dp"/>
<Button android:id="@+id/contactUs" android:layout_height="wrap_content"
android:layout_width="fill_parent" android:text="Contact Us"
android:textSize="20dp"/>
</LinearLayout>
Здесь я хочу, чтобы эта кнопка полностью соответствовала высоте экраналюбое устройство.Да, я могу показать все кнопки.но я хочу, чтобы между ними было одинаковое пространство, и они должны соответствовать высоте экрана.Так что я должен сделать для этого ??
Отредактировано:
И есть, мой tax_calculator_logo имеет разрешение 600x239, и я установил высоту ImageView как wrap_content и ширину с fill_parent, тогда почемуИзображение обрезается снизу и сверху ???