如何创建多个屏幕尺寸? [关闭]
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何创建多个屏幕尺寸? [关闭]相关的知识,希望对你有一定的参考价值。
我尝试了很多次但没有成功。任何人都可以告诉我一步一步的xml帮助,如何在android中使用多个屏幕大小?提前致谢。
答案
请遵循以下步骤:以第一个尺寸创建布局后(假设您的代码如下):
<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
标记时,在行的开头会出现一个提示:
现在看目录。您的布局嵌套在包含不同大小的布局的文件夹中。您可以根据需要更改新布局。
请注意,如果要使用相同的活动,则必须在其他配置中使用相同的命名。
以上是关于如何创建多个屏幕尺寸? [关闭]的主要内容,如果未能解决你的问题,请参考以下文章
Xcode - 如何检测 iPhone 的屏幕尺寸 [关闭]