不知道啥布局
程序员文章站
2022-03-23 22:03:14
新布局除了五大布局以外,我发现这个也不知道啥布局,这个布局它可以拖动控件,有大佬知道这啥布局吗??源码是这样的
新布局
除了五大布局以外,我发现这个也不知道啥布局,这个布局它可以拖动控件,有大佬知道这啥布局吗??
源码是这样的
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
我的版本是4.0.1的,一创建项目打开activity_main.xml文件就是如第一个图,就是在这上面进行修改代码的
在上面基础上修改原本TextView的text内容,并添加一个按钮Button,在按钮里面把TextView的app这段代码复制到Button里面,再点击右边Split
就可以发现可以拖动控件
拖动哪个控件,控件上面就会显示横向纵向的蓝色弯曲的线
本文地址:https://blog.csdn.net/qq_45907053/article/details/108720776