我是初学者。我正在开发一个应用程序,其中遇到了一个奇怪的布局问题。当我在小型设备上运行我的应用程序时,它运行良好,但是当我在大屏幕设备上运行它时,它的布局属性会自动更改。请让我知道是否有任何方法可以为所有屏幕尺寸以编程方式创建单个布局?我的xml是,
<RelativeLayout android:id="@+id/contents"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<ImageButton
android:id="@+id/imgBtn1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:background="@drawable/panchangtab1" />
<ImageButton
android:id="@+id/imgBtn2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:layout_toRightOf="@+id/imgBtn1"
android:background="@drawable/horoscopetab1" />
</RelativeLayout>
在这里,我得到了第一张图片,但第二张图片不是实际尺寸。