├── .idea ├── .name ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── vcs.xml ├── modules.xml ├── runConfigurations.xml ├── gradle.xml ├── compiler.xml └── misc.xml ├── app ├── .gitignore ├── libs │ └── achartengine-1.0.0.jar ├── src │ ├── main │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ ├── bg.png │ │ │ │ ├── circle_bg3.png │ │ │ │ ├── go_detail.png │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── mymoney_bg.png │ │ │ │ ├── detail_income.png │ │ │ │ ├── detail_payout.png │ │ │ │ ├── common_title_bg.png │ │ │ │ ├── home_mbank_1_normal.png │ │ │ │ ├── home_mbank_2_normal.png │ │ │ │ ├── home_mbank_3_normal.png │ │ │ │ ├── home_mbank_4_normal.png │ │ │ │ ├── home_mbank_5_normal.png │ │ │ │ ├── home_mbank_6_normal.png │ │ │ │ ├── expense_cost_btn_normal.png │ │ │ │ ├── form_row_input_divider.png │ │ │ │ ├── form_row_layout_bottom.png │ │ │ │ ├── form_row_layout_middle.png │ │ │ │ ├── common_toolbar_btn_focused.png │ │ │ │ ├── common_toolbar_btn_normal.png │ │ │ │ ├── common_toolbar_btn_pressed.png │ │ │ │ ├── expense_cost_btn_focused.png │ │ │ │ ├── expense_cost_btn_pressed.png │ │ │ │ ├── turnplate_center_unlogin.png │ │ │ │ ├── widget_keypad_clean_normal.png │ │ │ │ ├── widget_keypad_digit_normal.png │ │ │ │ ├── widget_keypad_done_focused.png │ │ │ │ ├── widget_keypad_done_normal.png │ │ │ │ ├── widget_keypad_done_pressed.png │ │ │ │ ├── form_row_input_middle_normal.png │ │ │ │ ├── widget_keypad_cancel_focused.png │ │ │ │ ├── widget_keypad_cancel_normal.png │ │ │ │ ├── widget_keypad_cancel_pressed.png │ │ │ │ ├── widget_keypad_clean_focused.png │ │ │ │ ├── widget_keypad_clean_pressed.png │ │ │ │ ├── widget_keypad_delete_focused.png │ │ │ │ ├── widget_keypad_delete_normal.png │ │ │ │ ├── widget_keypad_delete_pressed.png │ │ │ │ ├── widget_keypad_digit_focused.png │ │ │ │ ├── widget_keypad_digit_pressed.png │ │ │ │ ├── widget_keypad_display_normal.png │ │ │ │ ├── form_row_input_middle_focused.png │ │ │ │ ├── form_row_input_middle_pressed.png │ │ │ │ ├── turnplate_mask_unlogin_normal.png │ │ │ │ ├── widget_keypad_display_focused.png │ │ │ │ ├── widget_keypad_display_pressed.png │ │ │ │ ├── expense_cameral_money_display_bg.png │ │ │ │ └── form_row_input_middle_short_left_seleted.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── values │ │ │ │ ├── ids.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ ├── drawable │ │ │ │ ├── cycleanytext_shape.xml │ │ │ │ ├── rounded_edittext.xml │ │ │ │ ├── expense_cost_btn.xml │ │ │ │ ├── rounded_focused.xml │ │ │ │ ├── common_toolbar_btn.xml │ │ │ │ ├── widget_keypad_done.xml │ │ │ │ ├── widget_keypad_clean.xml │ │ │ │ ├── widget_keypad_digit.xml │ │ │ │ ├── form_row_input_middle_short_left.xml │ │ │ │ ├── widget_keypad_cancel.xml │ │ │ │ ├── widget_keypad_delete.xml │ │ │ │ ├── form_row_input_middle.xml │ │ │ │ ├── widget_keypad_display.xml │ │ │ │ └── rounded_edittext_states.xml │ │ │ ├── menu │ │ │ │ └── menu_main.xml │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ └── layout │ │ │ │ ├── fragment_one.xml │ │ │ │ ├── fragment_two.xml │ │ │ │ ├── circle_menu_item.xml │ │ │ │ ├── about_us.xml │ │ │ │ ├── wish.xml │ │ │ │ ├── setting.xml │ │ │ │ ├── fragment_one_item.xml │ │ │ │ ├── activity_main.xml │ │ │ │ ├── regist.xml │ │ │ │ ├── res_password.xml │ │ │ │ ├── login.xml │ │ │ │ ├── count.xml │ │ │ │ ├── keypad.xml │ │ │ │ ├── spending.xml │ │ │ │ └── expense_proces.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── hyl │ │ │ │ ├── accountbook │ │ │ │ ├── WishActivity.java │ │ │ │ ├── SettingActivity.java │ │ │ │ ├── AboutUsActivity.java │ │ │ │ ├── RegistActivity.java │ │ │ │ ├── LoginActivity.java │ │ │ │ ├── ResPwdActivity.java │ │ │ │ ├── TwoFragment.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── KeyPad.java │ │ │ │ ├── CountActivity.java │ │ │ │ ├── OneFragment.java │ │ │ │ ├── SpendingActivity.java │ │ │ │ ├── CircleMenuLayout.java │ │ │ │ └── ExpenseProcesActivity.java │ │ │ │ ├── dao │ │ │ │ └── DBOpenHelper.java │ │ │ │ └── util │ │ │ │ └── pubFun.java │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── hyl │ │ │ └── accountbook │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── com │ │ └── hyl │ │ └── accountbook │ │ └── ApplicationTest.java ├── proguard-rules.pro ├── build.gradle └── app.iml ├── settings.gradle ├── effectpic └── 未命名.gif ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .gitignore ├── gradle.properties ├── accountBook.iml ├── gradlew.bat ├── README.md ├── README_V2.0.md ├── gradlew └── LICENSE /.idea/.name: -------------------------------------------------------------------------------- 1 | accountBook -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /effectpic/未命名.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/effectpic/未命名.gif -------------------------------------------------------------------------------- /app/libs/achartengine-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/libs/achartengine-1.0.0.jar -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/bg.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/circle_bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/circle_bg3.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/go_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/go_detail.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/mymoney_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/mymoney_bg.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/detail_income.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/detail_income.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/detail_payout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/detail_payout.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/common_title_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/common_title_bg.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/home_mbank_1_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/home_mbank_1_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/home_mbank_2_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/home_mbank_2_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/home_mbank_3_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/home_mbank_3_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/home_mbank_4_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/home_mbank_4_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/home_mbank_5_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/home_mbank_5_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/home_mbank_6_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/home_mbank_6_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/expense_cost_btn_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/expense_cost_btn_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/form_row_input_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/form_row_input_divider.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/form_row_layout_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/form_row_layout_bottom.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/form_row_layout_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/form_row_layout_middle.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/common_toolbar_btn_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/common_toolbar_btn_focused.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/common_toolbar_btn_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/common_toolbar_btn_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/common_toolbar_btn_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/common_toolbar_btn_pressed.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/expense_cost_btn_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/expense_cost_btn_focused.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/expense_cost_btn_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/expense_cost_btn_pressed.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/turnplate_center_unlogin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/turnplate_center_unlogin.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/widget_keypad_clean_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/widget_keypad_clean_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/widget_keypad_digit_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/widget_keypad_digit_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/widget_keypad_done_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/widget_keypad_done_focused.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/widget_keypad_done_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/widget_keypad_done_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/widget_keypad_done_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/widget_keypad_done_pressed.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/form_row_input_middle_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/form_row_input_middle_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/widget_keypad_cancel_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/widget_keypad_cancel_focused.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/widget_keypad_cancel_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/widget_keypad_cancel_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/widget_keypad_cancel_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/widget_keypad_cancel_pressed.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/widget_keypad_clean_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/widget_keypad_clean_focused.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/widget_keypad_clean_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/widget_keypad_clean_pressed.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/widget_keypad_delete_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/widget_keypad_delete_focused.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/widget_keypad_delete_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/widget_keypad_delete_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/widget_keypad_delete_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/widget_keypad_delete_pressed.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/widget_keypad_digit_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/widget_keypad_digit_focused.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/widget_keypad_digit_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/widget_keypad_digit_pressed.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/widget_keypad_display_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/widget_keypad_display_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/form_row_input_middle_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/form_row_input_middle_focused.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/form_row_input_middle_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/form_row_input_middle_pressed.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/turnplate_mask_unlogin_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/turnplate_mask_unlogin_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/widget_keypad_display_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/widget_keypad_display_focused.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/widget_keypad_display_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/widget_keypad_display_pressed.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/expense_cameral_money_display_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/expense_cameral_money_display_bg.png -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/form_row_input_middle_short_left_seleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnneHan/accountBook/HEAD/app/src/main/res/mipmap-hdpi/form_row_input_middle_short_left_seleted.png -------------------------------------------------------------------------------- /app/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Sep 19 11:31:38 CST 2018 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip 7 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 16dp 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | > 2 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/cycleanytext_shape.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /app/src/test/java/com/hyl/accountbook/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.hyl.accountbook; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /app/src/androidTest/java/com/hyl/accountbook/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.hyl.accountbook; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_edittext.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_one.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/expense_cost_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_focused.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/common_toolbar_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/widget_keypad_done.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/widget_keypad_clean.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/widget_keypad_digit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/form_row_input_middle_short_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/widget_keypad_cancel.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/widget_keypad_delete.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/form_row_input_middle.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/widget_keypad_display.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_edittext_states.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 12 | 15 | -------------------------------------------------------------------------------- /app/src/main/java/com/hyl/accountbook/WishActivity.java: -------------------------------------------------------------------------------- 1 | package com.hyl.accountbook; 2 | 3 | import android.os.Bundle; 4 | import android.support.v7.app.AppCompatActivity; 5 | 6 | /** 7 | * @programName: WishActivity.java 8 | * @programFunction: the wish wall page 9 | * @createDate: 2018/09/19 10 | * @author: AnneHan 11 | * @version: 12 | * xx. yyyy/mm/dd ver author comments 13 | * 01. 2018/09/19 1.00 AnneHan New Create 14 | */ 15 | public class WishActivity extends AppCompatActivity { 16 | protected void onCreate(Bundle savedInstanceState){ 17 | super.onCreate(savedInstanceState); 18 | setContentView(R.layout.wish); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/src/main/java/com/hyl/accountbook/SettingActivity.java: -------------------------------------------------------------------------------- 1 | package com.hyl.accountbook; 2 | 3 | import android.os.Bundle; 4 | import android.support.v7.app.AppCompatActivity; 5 | 6 | /** 7 | * @programName: SettingActivity.java 8 | * @programFunction: the setting page 9 | * @createDate: 2018/09/19 10 | * @author: AnneHan 11 | * @version: 12 | * xx. yyyy/mm/dd ver author comments 13 | * 01. 2018/09/19 1.00 AnneHan New Create 14 | */ 15 | public class SettingActivity extends AppCompatActivity { 16 | protected void onCreate(Bundle savedInstanceState){ 17 | super.onCreate(savedInstanceState); 18 | setContentView(R.layout.setting); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_two.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | #fff 8 | #ffffffff 9 | #000 10 | #1ba0e1 11 | #0c92d4 12 | #00000000 13 | #000000 14 | 15 | #88cc44 16 | #ff6600 17 | 18 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in D:\AppData\Local\Android\sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 19 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /app/src/main/java/com/hyl/accountbook/AboutUsActivity.java: -------------------------------------------------------------------------------- 1 | package com.hyl.accountbook; 2 | 3 | import android.os.Bundle; 4 | import android.support.v7.app.AppCompatActivity; 5 | import android.widget.TextView; 6 | 7 | /** 8 | * @programName: AboutUsActivity.java 9 | * @programFunction: About Us page 10 | * @createDate: 2018/09/19 11 | * @author: AnneHan 12 | * @version: 13 | * xx. yyyy/mm/dd ver author comments 14 | * 01. 2018/09/19 1.00 AnneHan New Create 15 | */ 16 | public class AboutUsActivity extends AppCompatActivity { 17 | private TextView tvAboutUs; 18 | private TextView tvIntroduce; 19 | 20 | protected void onCreate(Bundle savedInstanceState){ 21 | super.onCreate(savedInstanceState); 22 | setContentView(R.layout.about_us); 23 | } 24 | } 25 | 26 | -------------------------------------------------------------------------------- /app/src/main/res/layout/circle_menu_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 13 | 14 | 22 | 23 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true -------------------------------------------------------------------------------- /app/src/main/res/layout/about_us.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 16 | 25 | -------------------------------------------------------------------------------- /app/src/main/res/layout/wish.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 16 | 25 | 26 | -------------------------------------------------------------------------------- /app/src/main/res/layout/setting.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 16 | 25 | 26 | -------------------------------------------------------------------------------- /accountBook.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 29 5 | buildToolsVersion '29.0.3' 6 | 7 | defaultConfig { 8 | applicationId "com.hyl.accountbook" 9 | minSdkVersion 19 10 | targetSdkVersion 29 11 | versionCode 1 12 | versionName "1.0" 13 | } 14 | buildTypes { 15 | release { 16 | minifyEnabled false 17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 18 | } 19 | } 20 | sourceSets { 21 | main { 22 | jniLibs.srcDirs = ['libs'] 23 | } 24 | } 25 | } 26 | 27 | dependencies { 28 | compile fileTree(dir: 'libs', include: ['*.jar']) 29 | testCompile 'junit:junit:4.12' 30 | /*compile 'com.android.support:appcompat-v7:23.2.0' 31 | compile 'com.android.support:design:23.2.0'*/ 32 | compile 'com.android.support:appcompat-v7:+' 33 | compile 'com.android.support:design:+' 34 | compile files('libs/achartengine-1.0.0.jar') 35 | } 36 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_one_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 16 | 22 | 27 | 28 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 9 | 10 | 17 | 18 | 23 | 24 | 30 | 31 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /app/src/main/res/layout/regist.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 15 | 16 | 26 | 27 | 37 | 38 |