欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

直播系统平台搭建,Android 快速将约束布局转为线性布局

程序员文章站 2024-02-26 21:06:40
...

直播系统平台搭建,Android 快速将约束布局转为线性布局
直播系统平台搭建,只论快速将约束布局转为线性布局,不修改默认布局

创建一个新活动,直播系统平台搭建默认为约束布局

<?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=".TestActivity">
</androidx.constraintlayout.widget.ConstraintLayout>

快速转为线性布局,直接修改xmlns:android="http://schemas.android.com/apk/res/android"前约束布局组件为线性布局即可:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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=".TestActivity">
</LinearLayout>

以上就是直播系统平台搭建,Android 快速将约束布局转为线性布局, 更多内容欢迎关注之后的文章