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

Posted 你的深渊

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安卓记账本开发——业务逻辑的封装相关的知识,希望对你有一定的参考价值。

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


最新界面

 

 


部分源码

new_cost_data.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:gravity="center"
    android:layout_height="match_parent">

    <EditText
        android:id="@+id/et_cost_title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="4dp"
        android:hint="Cost Title"/>

    <EditText
        android:id="@+id/et_cost_money"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="4dp"
        android:inputType="numberDecimal"
        android:hint="Cost Money"/>

    <DatePicker
        android:id="@+id/dp_cost_date"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:datePickerMode="spinner"
        android:calendarViewShown="false"
        android:layout_margin="4dp"/>


</LinearLayout>

 

以上是关于安卓记账本开发——业务逻辑的封装的主要内容,如果未能解决你的问题,请参考以下文章

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

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

家庭记账本安卓版开发:第四天

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

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

安卓开发实战-记账本APP