如何在android studio中设置约束

时间:2016-08-11 09:34:47

标签: android layout android-constraintlayout

我在线搜索过,我发现在Android Studio中可以使用蓝色打印设置Constraint Layout,但我无法找到它们。还有其他办法吗?

2 个答案:

答案 0 :(得分:3)

是的,你可以。

1.确保您拥有 Android Studio 2.2预览&最新的 Android支持存储库(版本32或更高版本)

Click Tools > Android > SDK Manager.

Click the SDK Tools tab.

Select Android Support Repository, then click OK.

Support Repo

2.您必须在build.gradle

中的编译依赖项中添加以下内容
compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha2'

然后您还必须更新您的gradle插件(主项目' s 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.要为项目添加新的约束布局: 右键单击模块的布局目录,然后单击New> 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

答案 1 :(得分:2)

最简单的方法是首先正确创建Relative Layout,然后将其转换为Constraint Layout

要将现有布局转换为约束布局:

  

在Android Studio中打开现有布局,然后选择“设计”标签   在编辑器窗口的底部。

     

在“组件树”窗口中,右键单击布局并单击   转换为ConstraintLayout。