我创建了一个按钮布局设计,如图所示。如何实现不同尺寸屏幕的设计模式?此布局适用于 3.7 英寸屏幕,但不适用于其他屏幕。可能是滚动视图是一种选择,但这并不满足我。我该怎么做?有什么帮助吗?
这是我的 xml 文件
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="110dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="5dp"
android:text="Button" />
<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="110dp"
android:layout_below="@+id/button1"
android:layout_centerHorizontal="true"
android:layout_marginTop="5dp"
android:text="Button" />
<Button
android:id="@+id/button3"
android:layout_width="match_parent"
android:layout_height="110dp"
android:layout_below="@+id/button2"
android:layout_centerHorizontal="true"
android:layout_marginTop="5dp"
android:text="Button" />
<Button
android:id="@+id/button4"
android:layout_width="match_parent"
android:layout_height="110dp"
android:layout_below="@+id/button3"
android:layout_centerHorizontal="true"
android:layout_marginTop="5dp"
android:text="Button"
android:layout_marginBottom="5dp" />