Android Studio 约束布局[ConstraintLayout]
程序员文章站
2022-04-14 16:43:40
...
<?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">
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="33dp"
android:text="Button"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.6" />
</androidx.constraintlayout.widget.ConstraintLayout>
上一篇: 第一章1 解释
推荐阅读
-
Android新布局方式ConstraintLayout快速入门教程
-
Android studio窗口布局怎么保存和恢复?
-
Android新布局方式ConstraintLayout快速入门教程
-
android 常用布局文件(LinearLayout,RelativeLayout,FrameLayout,ConstraintLayout,TableLayout)
-
Android studio窗口布局怎么保存和恢复?
-
Android Studio怎么新建menu布局文件?
-
android studio布局文件详解
-
Android studio基本布局
-
Android Material Design控件使用(一)——ConstraintLayout 约束布局
-
android约束布局ConstraintLayout