JavaでAndroidの家計簿アプリを作成しています。
購入商品を記載する画面で質問があります。
ここでやりたいことは、購入した商品の消費税を入れる処理を作成しました。
内税、外税を下記画面内のIs VAT includedの下に表示されるラジオボタンNo, Yesどちらかを選択する形になります。
※VAT = Value added tax(消費税)の意味で、主に英語圏で使われる言葉になります。
Noを選んだ場合は「内税」とみなし、消費税(VAT)記載部分をグレーアウトし、入力不可にする予定です(こちらはまだ未実装)。
また、Noの場合は、上記と併せて、beelean spdBoolをfalseとしています。
Yesを選んだ場合は「外税」とみなし、消費税(VAT)記載部分に日本円であれば10などの数字を入力することで、金額*外税を計算した結果を正式な金額として保存します。
また、Yesの場合は、上記と併せて、beelean spdBoolをtrueとしています。
上記仕様を実装するため、RadioGroupを用意し、下記AddSpendingFragment.javaの141~156行目にNo, Yesを選んだ場合の分岐処理を用意しました。
しかし、実際に動かしてみると、 Noの場合でもYesの場合でも、spdBool、vatRateがDBに格納されておりませんでした。
ブレークポイントを141行目に貼り、再度動かすと、分岐処理を行っている141~156行目が飛ばされ、一切処理が通っていないことが判明しました。
そこで、今回の質問になるのですが、
上記141~156行目の処理を通らせるにはどのように対処したら良いかヒントだけでも頂けますと幸いです。
ご回答の程、よろしくお願いいたします。
AddSpendingFragment.java
package com.myproject.offlinebudgettrackerappproject; import android.app.DatePickerDialog; import android.content.SharedPreferences; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import android.widget.DatePicker; import android.widget.EditText; import android.widget.RadioButton; import android.widget.RadioGroup; import androidx.fragment.app.Fragment; import androidx.lifecycle.ViewModelProvider; import com.myproject.offlinebudgettrackerappproject.model.BudgetTrackerSpending; import com.myproject.offlinebudgettrackerappproject.model.BudgetTrackerSpendingViewModel; import com.myproject.offlinebudgettrackerappproject.model.Currency; import java.util.Calendar; import java.util.List; /** * A simple {@link Fragment} subclass. * Use the {@link AddSpendingFragment#newInstance} factory method to * create an instance of this fragment. */ public class AddSpendingFragment extends Fragment { EditText enterDate, enterStoreName, enterProductName, enterProductType, enterPrice, enterVatRate, enterNotes; RadioGroup radioGroup; RadioButton radioNoButton, radioYesButton; Button saveButton; SharedPreferences sharedPreferences; private static final String PREF_CURRENCY_FILENAME = "CURRENCY_SHARED"; private static final String PREF_CURRENCY_VALUE = "currencyValue"; BudgetTrackerSpendingViewModel budgetTrackerSpendingViewModel; boolean spdBool; Double vatRate; Double price; // TODO: Rename parameter arguments, choose names that match // the fragment initialization parameters, e.g. ARG_ITEM_NUMBER private static final String ARG_PARAM1 = "param1"; private static final String ARG_PARAM2 = "param2"; // TODO: Rename and change types of parameters private String mParam1; private String mParam2; public AddSpendingFragment() { // Required empty public constructor } /** * Use this factory method to create a new instance of * this fragment using the provided parameters. * * @param param1 Parameter 1. * @param param2 Parameter 2. * @return A new instance of fragment AddSpendingFragment. */ // TODO: Rename and change types and number of parameters public static AddSpendingFragment newInstance(String param1, String param2) { AddSpendingFragment fragment = new AddSpendingFragment(); Bundle args = new Bundle(); args.putString(ARG_PARAM1, param1); args.putString(ARG_PARAM2, param2); fragment.setArguments(args); return fragment; } @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); if (getArguments() != null) { mParam1 = getArguments().getString(ARG_PARAM1); mParam2 = getArguments().getString(ARG_PARAM2); } } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.fragment_add_spending, container, false); enterDate = (EditText) view.findViewById(R.id.spd_enter_date); enterStoreName = (EditText) view.findViewById(R.id.spd_enter_store_name); enterProductName = (EditText) view.findViewById(R.id.spd_enter_product_name); enterProductType = (EditText) view.findViewById(R.id.spd_enter_product_type); enterPrice = (EditText) view.findViewById(R.id.spd_enter_price); enterVatRate = (EditText) view.findViewById(R.id.spd_vat_rate); enterNotes = (EditText) view.findViewById(R.id.spd_notes); radioGroup = (RadioGroup) view.findViewById(R.id.spd_radio_group); saveButton = (Button) view.findViewById(R.id.spd_save_button); sharedPreferences = getActivity().getSharedPreferences(PREF_CURRENCY_FILENAME, 0); //選択された通貨表示 int currentCurrencyNum = sharedPreferences.getInt(PREF_CURRENCY_VALUE, 0); Currency currency = Currency.getCurrencyArrayList().get(currentCurrencyNum); enterPrice.setCompoundDrawablesWithIntrinsicBounds(currency.getCurrencyImage(), 0, 0, 0); enterVatRate.setCompoundDrawablesWithIntrinsicBounds(currency.getCurrencyImage(), 0, 0, 0); Calendar calendar = Calendar.getInstance(); final int year = calendar.get(Calendar.YEAR); final int month = calendar.get(Calendar.MONTH); final int day = calendar.get(Calendar.DAY_OF_MONTH); enterDate.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { DatePickerDialog datePickerDialog = new DatePickerDialog( getActivity(), new DatePickerDialog.OnDateSetListener() { @Override public void onDateSet(DatePicker datePicker, int year, int month, int dayOfMonth) { month = month + 1; String date = year + "-" + month + "-" + dayOfMonth; enterDate.setText(date); } }, year, month, day); datePickerDialog.show(); } }); List<BudgetTrackerSpending> budgetTrackerSpending = null; budgetTrackerSpendingViewModel = new ViewModelProvider(requireActivity()).get(BudgetTrackerSpendingViewModel.class); saveButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { String date = enterDate.getText().toString(); String storeName = enterStoreName.getText().toString(); String productName = enterProductName.getText().toString(); String productType = enterProductType.getText().toString(); price = Double.parseDouble(enterPrice.getText().toString()); radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() { @Override public void onCheckedChanged(RadioGroup radioGroup, int checkId) { switch (checkId) { case R.id.spd_no: spdBool = false; vatRate = 0.0; break; case R.id.spd_yes: spdBool = true; vatRate = Double.parseDouble(enterVatRate.getText().toString()); price = price * vatRate; break; } } }); String notes = enterNotes.getText().toString(); BudgetTrackerSpending budgetTrackerSpending = new BudgetTrackerSpending(date, storeName, productName, productType, price, spdBool, vatRate, notes); budgetTrackerSpendingViewModel.insert(budgetTrackerSpending); } }); return view; } }
0 コメント