安卓记账本开发——适配器编写和测试

Posted 你的深渊

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安卓记账本开发——适配器编写和测试相关的知识,希望对你有一定的参考价值。

项目已同步到 GitHub https://github.com/YourDeepEnd/HouseHoldBook

 


 

目前界面

 


 

 部分源码

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout 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=".MainActivity">

    <com.google.android.material.appbar.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <androidx.appcompat.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

    </com.google.android.material.appbar.AppBarLayout>

    <include layout="@layout/content_main" />

    <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="@dimen/fab_margin"
        app:srcCompat="@android:drawable/ic_dialog_email" />

</androidx.coordinatorlayout.widget.CoordinatorLayout>

 

以上是关于安卓记账本开发——适配器编写和测试的主要内容,如果未能解决你的问题,请参考以下文章

安卓记账本开发——数据库创建和数据测试

Android开发之记账本开发第三天

安卓开发Android平台的记账本app(全部代码+room框架操作数据库+设计报告)

2019/2/15安卓应用——记账本,开发记录

安卓记账本开发——图表的使用

安卓记账本开发——业务逻辑的封装