我在网上搜索了一下,我看到在 Android Studio 中可以使用蓝图设置 Constraint Layout,但我找不到它们。还有其他方法吗?
是的,你可以。
1.确保您拥有 Android Studio 2.2 预览版 和最新的 Android 支持存储库(版本 32 或更高版本):
Click Tools > Android > SDK Manager.
Click the SDK Tools tab.
Select Android Support Repository, then click OK.
2.你必须在build.gradle
的编译依赖中添加以下内容
compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha2'
然后你还必须更新你的gradle插件(主项目的build.gradle
)
classpath 'com.android.tools.build:gradle:2.2.0-alpha2'
或者你可以使用最新的:
classpath 'com.android.tools.build:gradle:2.2.0-alpha3'
3.在工具栏或同步通知中,单击“将项目与 Gradle 文件同步”。
4.要为您的项目添加新的约束布局:右键单击模块的布局目录,然后单击新建 > XML > 布局 XML。输入布局的名称并为根标记输入 android.support.constraint.ConstraintLayout
。
或
将现有布局转换为约束布局:
Open your existing layout in Android Studio
and select the Design tab at the bottom of the editor window.
In the Component Tree window,
right-click the layout and click Convert <layout>
to ConstraintLayout.
来源
Constraint Layout
我是一名优秀的程序员,十分优秀!