赞
踩
详解如下
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">
android:layout_width="match_parent" //设置当前组件宽度。match_parent表示充满整个父元素。
android:layout_height="match_parent" //设置组件高度。
android:layout_marginEnd="16dp" //距离边缘的位置信息
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:layout_marginStart="16dp"
android:layout_marginTop="8dp"
android:orientation="vertical" //设置组件内容的排列方式为横向还是竖向。
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
android:id="@+id/tvSMPTitle" //组件的ID
android:layout_width="match_parent"
android:layout_height="wrap_content" //组件多大就是多大。
android:text="简单的MP3播放器" /> //组件添加文字
android:id="@+id/bt_play_or_pause"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="播放" /> //按钮设置显示文字
android:id="@+id/btSMPStop"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="暂停" />
本文地址:https://blog.csdn.net/ZZ_skate/article/details/107168131
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。