今日学习情况总结
与小组成员讨论如何完成作业的主页面的xml页面
代码行量:129行
学习所花时间:0.5h
<?xml version="1.0" encoding="utf-8"?>
<androidx.drawerlayout.widget.DrawerLayout
xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".activity.ManageActivity">
<!--主界面-->
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar_man"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="#e8cb06"
app:title="@string/app_name"
app:navigationIcon="@drawable/line"
/>
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="60dp"
android:layout_alignParentEnd="true"
android:layout_marginEnd="0dp"
android:text="更多功能"
android:backgroundTint="#e8cb06"
android:textColor="@color/black"/>
<ListView
android:id="@+id/manage_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/toolbar_man"
android:padding="20dp"
android:divider="#00000000"
android:dividerHeight="18dp"
/>
</RelativeLayout>
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="45dp"
app:elevation="6dp"
app:srcCompat="@drawable/add"
app:backgroundTint="#0288D1"
/> 标签:layout,parent,5.9,app,android,id,match From: https://www.cnblogs.com/tianpeisen/p/18248439