如何创建多个屏幕尺寸?

时间:2018-10-19 06:22:54

标签: android android-layout

我尝试了很多次但没有成功。任何人都可以通过XML帮助逐步告诉我如何在Android中使用多个屏幕尺寸? 预先感谢。

1 个答案:

答案 0 :(得分:1)

遵循以下步骤: 在以您的第一个尺寸创建布局之后(假设您的代码如下):

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:app="http://schemas.android.com/apk/res-auto"
   xmlns:tools="http://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:paddingBottom="@dimen/activity_vertical_margin"
   android:paddingLeft="@dimen/activity_horizontal_margin"
   android:paddingRight="@dimen/activity_horizontal_margin"
   android:paddingTop="@dimen/activity_vertical_margin"
   tools:context=".MainActivity">

</RelativeLayout>

当您移动光标并单击<RelativeLayout标签时,将在行的开头显示提示: enter image description here

单击提示时,它可以帮助您使用当前布局在其他配置中创建布局: enter image description here

现在,您可以使用“尺寸”项目(无需重命名): enter image description here

在新窗口中,您可以选择新的尺寸,然后按OK(确定)按钮: enter image description here

现在查看目录。您的布局嵌套在一个文件夹中,该文件夹包含不同大小的布局。您可以根据需要更改新的布局。 enter image description here

请注意,如果要使用相同的活动,则必须在其他配置中使用相同的命名。