我放了 2 个带有 wrap_content 大小的按钮,但是随着设备更大,按钮在上面,我不知道如何修复它们,所以在所有设备上都具有相同的位置。有没有办法不遮住这家伙的头,例如。
布局.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"
android:background="@drawable/background"
tools:context=".BasicScreenActivity" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginTop="102dp"
android:background="@drawable/custom_button1" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/button1"
android:background="@drawable/custom_button2" />
</RelativeLayout>