5.8

与小组成员讨论如何完成作业的主页面的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"
/>























</FrameLayout>

<!--侧边栏-->
<com.google.android.material.navigation.NavigationView
android:id="@+id/navigation_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#fed0d0"
android:layout_gravity="start"
android:orientation="vertical"
app:menu="@menu/manage_menu"
app:headerLayout="@layout/head_layout"
/>









</androidx.drawerlayout.widget.DrawerLayout>
posted @ 2024-06-11 09:01  不如喝点  阅读(15)  评论(0编辑  收藏  举报