我尝试了很多次但没有成功。任何人都可以通过XML帮助逐步告诉我如何在Android中使用多个屏幕尺寸? 预先感谢。
答案 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
标签时,将在行的开头显示提示:
现在查看目录。您的布局嵌套在一个文件夹中,该文件夹包含不同大小的布局。您可以根据需要更改新的布局。
请注意,如果要使用相同的活动,则必须在其他配置中使用相同的命名。