嗨我有一个问题,当我在我的相对布局中添加一个按钮时,位置不会影响不同的屏幕,并且android在大屏幕上运行应用程序时调整按钮的大小但问题是当我添加一个按钮背景图像没有设置大屏幕按钮的大小它显示按钮就好像我在一个小屏幕上
<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"
>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="94dp"
android:text="@string/hello_world" />
<Button
android:id="@+id/button1"
android:layout_width="200px"
android:layout_height="40px"
android:layout_below="@+id/textView1"
android:layout_centerHorizontal="true"
android:layout_marginTop="30dp"
android:background="@drawable/bt" />
</RelativeLayout>