Published Date : 2021年4月26日17:36

【Androidアプリ:パート11】個人事業主と給与所得者の所得税と住民税を計算するAndroidアプリ
【Android app:Part 11】Android App Calculates Income and Resident Taxes for sole proprietors and salaried workers


This blog has an English translation


ニコニコ動画にアップした動画のまとめ記事です。

This is a summary blog post about a video I uploaded to NicoNico.

細かい部分は動画を参考にしてください。

Please refer to the video for details.


目次

Table of Contents




① 動画の説明
① Video Description



警告:

今回説明する給与所得者と個人事業主等の所得税及び住民税を計算するアプリは、あくまで簡易的なお遊び用のアプリです。

正確な数値、計算方法は各自で調べて下さい。

このアプリは大雑把に大体の見積りを計算して楽しむ為のアプリです。

決して従業員の年末調整や個人の確定申告等に使用しないでください。

さらに、税金の計算方法は変更される場合があり、控除についても同様です。

また、控除や税金の計算方法が間違っている可能性もありますので、

あまり信用せずに、各自で調べてから実験してみてください。

このアプリを使って何かしらの損害が発生したとしても、私は一切の責任を負いません。

Warning:

​The app I'm going to show you for calculating income and residence taxes for salaried workers and Individual employers, etc. is just a simple application for playing.

​Please check the exact number and calculation method by yourself.

​This app is used to calculate rough estimates and enjoy them.

​Do not use for year-end adjustment of employees or for individual tax return.

In addition, the method of calculating taxes and deductions may change.

Also, there is a possibility that the deduction and tax calculation methods are incorrect.

Don't trust it too much, and test it yourself.

​I will not be liable for any damage caused by using this app.

個人事業主と給与所得者の所得税と住民税を計算するAndroidアプリパート11。

Android App Calculates Income and Resident Taxes for sole proprietors and salaried workers, Part 11.

前回の続きです。

Continued from last time.

ではメインとなるJavaクラスファイルのコードを書いていきましょう。

Let's write the code for the main Java class file.


Responsive image

今回もゆっくりと動画を再生させます。時間が無い方は3倍速くらいで見たほうが丁度いいかもしれません。

I will play the video slowly again this time. If you don't have time, it might be just right to watch at 3 times speed.

まず必要なライブラリ類をインポートしていきます。

First, import the necessary libraries.


Responsive image

電卓アプリとcsvdriverをそれぞれのライブラリからインポートします。

Import the Calculator app and csvdriver from their respective libraries.


Responsive image

後はいつものように、インスタンスとなる変数をそれぞれの型で宣言していきます。

Then, as usual, you declare the variables to be instances in their respective types.


Responsive image

完成してあるアプリを基に、それぞれの変数がどの部分に対応するか見ていきましょう。

Based on the finished app, let's look at where each variable corresponds to.


Responsive image

メインファイルのエラーが無くなるようにするため、先に国民健康保険料を計算するJavaクラスファイルを作成しておいて、それから必要なメソッドだけを用意しておきましょう。

To avoid errors in the main file, first create a Java class file that calculates National Health Insurance premiums, and then provide only the necessary methods.


Responsive image

commonライブラリのcsvdriverが各リストに対してどのように対応するかを見ておきましょう。

Let's see how the common library's csvdriver corresponds to each list.

電卓アプリへ変移する為のボタンやリセットボタン等のコードは今までのアプリと変わりません。

The code of buttons to go to the calculator application and reset buttons is the same as before.

public void spStartCalculator(View view) {
    Intent calcIntent = new Intent(this, CalculatorActivity.class);
    startActivity(calcIntent);
}

public void spReset(View view) {
    Intent resetIntent = new Intent(this, SpMainActivity.class);
    startActivity(resetIntent);
    finish();
    overridePendingTransition(0, 0);
}

チェックボックスにチェックが入った時のロジックも今までのアプリの時と同様です。

The logic when the check box is checked is the same as before.

public void spOnReturnCheckboxClicked(View view) {
    boolean returnChecked = ((CheckBox) view).isChecked();

    if (returnChecked) {
        if (view.getId() == whiteTaxReturnCheckBox.getId()) {
            blueTaxReturnCheckBox.setChecked(false);
        }
        else {
            whiteTaxReturnCheckBox.setChecked(false);
        }
    } else {
        whiteTaxReturnCheckBox.setChecked(false);
        blueTaxReturnCheckBox.setChecked(false);
    }

}

今回は白色申告と青色申告のどちらかを選ぶためのチェックボックスも用意します。

This time, We will prepare a check box to choose either white return or blue return.

ここで計算された国民健康保険料と国民年金保険料の値を税金を計算する為のアクティビティへ送る為のボタンのロジックも前回の時と同様です。

The button logic to send the calculated National Health Insurance and National Pension Insurance values to the activity to calculate taxes is the same as last time.

その他のロジックも前回のアプリとほぼ変わりません。変数やメソッド名の名前の付け方が異なるだけです。

The rest of the logic is pretty much the same as the previous app. It only names variables and methods differently.

パート12へ続く。

Continue to Part 12.



以上です。お疲れ様です。

That's all. Thank you for your hard work.