家庭记账本(七+每周总结)

今日进度:用户使用说明+软件完善

Faily Book app说明书
  Family Book作为家庭内部的一种使用的软件,尽量使其偏简洁,避免花里胡哨,操作方面也不宜过于复杂,让家庭中的每个成员使用起来可以得心应手。
  既然是作为一种家庭用的软件,就没必要实现用户登录注册这些功能。而可以做成即开即用的一种软件,功能类似于手机上的计算器。这样做可以避免在使用过程中,因为操作步骤的繁琐,而不能保证其便利性,其次作为家庭账本用的话,也没有必要做的保密性太强,就是要让每个家庭成员看到家庭收支情况。
  1、界面实用性更为重要些,重于简洁。
       2、主界面分为三个功能的按钮,有添加收入、添加支出、删除账单三个功能。添加收入和添加支出需要输入金额数目(+为收入-为支出)、账目事件、日期;点击删除项目则显可输入账目事件来删除指定账单。
    3、界面的色调偏淡,显示的字体要与背景便于区分,字体要偏大醒目。
       4、功能要简洁明了,适合家庭中各年龄段的人使用。
下载即可使用。

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="match_parent"
        android:layout_margin="10dp"
        android:hint="账目事件"/>

    <EditText
        android:id="@+id/et_cost_money"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"
        android:hint="金额"/>

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

</LinearLayout>

原文地址:https://www.cnblogs.com/marr/p/14902474.html