我希望我的布局固定大小说:320dp×480dp作为ldpi屏幕分辨率的默认值。
因此,当用户使用720x1280设备时,布局仍然是320x480,但会居中。
有什么建议吗?我想避免为每个分辨率创建多个布局。
答案 0 :(得分:1)
<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<RelativeLayout android:layout_width="320px"
android:layout_height="480px"
android:layout_centerInParent="true"
android:background="@color/white">
</RelativeLayout>
</RelativeLayout>
希望这就是你想要的。
答案 1 :(得分:1)
对于父视图容器,您应该将layout_width和layout_height设置为所需的大小,然后使其layout_gravity等于center。因此,在您的情况下,您将使用以下
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="320dp"
android:layout_height="480dp"
android:layout_gravity="center" >
<!-- The rest of your layout -->
</LinearLayout>
这应该使视图居中并保持所需的大小。应该注意,您可以使用任何布局,而不仅仅是LinearLayout。
希望这有帮助!祝你好运。