diff --git a/app/src/main/java/net/foucry/pilldroid/DrugDetailActivity.java b/app/src/main/java/net/foucry/pilldroid/DrugDetailActivity.java index 2f27abc..0760882 100644 --- a/app/src/main/java/net/foucry/pilldroid/DrugDetailActivity.java +++ b/app/src/main/java/net/foucry/pilldroid/DrugDetailActivity.java @@ -123,13 +123,14 @@ public class DrugDetailActivity extends AppCompatActivity { String takeValue = takeTextView.getText().toString(); alertView = findViewById(R.id.alert_cell); + alertView.setContentDescription("R.string.Drug_warningThreshold_label"); TextView alertTextView = alertView.findViewById(R.id.value); String alertValue = alertTextView.getText().toString(); warningView = findViewById(R.id.warning_cell); + warningView.setContentDescription("R.string.drug_alertThreshold_label"); TextView warningTextView = warningView.findViewById(R.id.value); String warningValue = warningTextView.getText().toString(); - newPrescription.setStock(Float.parseFloat(stockValue)); newPrescription.setTake(Float.parseFloat(takeValue)); newPrescription.setWarning(Integer.parseInt(warningValue)); diff --git a/app/src/main/java/net/foucry/pilldroid/DrugListActivity.java b/app/src/main/java/net/foucry/pilldroid/DrugListActivity.java index 57cfe8b..29ec254 100644 --- a/app/src/main/java/net/foucry/pilldroid/DrugListActivity.java +++ b/app/src/main/java/net/foucry/pilldroid/DrugListActivity.java @@ -60,6 +60,7 @@ import java.text.SimpleDateFormat; import java.util.Date; import java.util.List; import java.util.Locale; +import java.util.Objects; /** * An activity representing a list of Drugs is activity @@ -225,6 +226,7 @@ public class DrugListActivity extends AppCompatActivity { Log.d(TAG, "Missing camera permission"); Toast.makeText(this, R.string.missing_camera_permission, Toast.LENGTH_LONG).show(); } else { + assert bundle != null; Log.d(TAG, "bundle == " + bundle.getInt("returnCode")); int returnCode = bundle.getInt("returnCode"); int resultCode = bundle.getInt("resultCode"); @@ -248,13 +250,13 @@ public class DrugListActivity extends AppCompatActivity { } String cip13; - switch (bundle.getString(BARCODE_FORMAT_NAME)) { + switch (Objects.requireNonNull(bundle.getString(BARCODE_FORMAT_NAME))) { case "CODE_128": case "EAN_13": //CODE_128 || EAN 13 cip13 = bundle.getString(BARCODE_CONTENT); break; case "DATA_MATRIX": - cip13 = bundle.getString(BARCODE_CONTENT).substring(4, 17); + cip13 = Objects.requireNonNull(bundle.getString(BARCODE_CONTENT)).substring(4, 17); break; default: scanNotOK(); @@ -340,7 +342,7 @@ public class DrugListActivity extends AppCompatActivity { protected void showInputDialog() { final Dialog dialog = new Dialog(this); dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); - dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT)); + Objects.requireNonNull(dialog.getWindow()).setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT)); dialog.setCancelable(true); dialog.setCanceledOnTouchOutside(true); @@ -349,9 +351,9 @@ public class DrugListActivity extends AppCompatActivity { MaterialButton ok = dialog.findViewById(R.id.agreed); MaterialButton cancel = dialog.findViewById(R.id.notagreed); ok.setEnabled(false); - ok.setBackground(ContextCompat.getDrawable(this, R.drawable.rounded_btn_disabled)); - //MaterialTextView title = dialog.findViewById(R.id.title); - final EditText editText= dialog.findViewById(R.id.editcip13); + ok.setBackground(Objects.requireNonNull(ContextCompat.getDrawable(this, R.drawable.rounded_btn_disabled))); + MaterialTextView title = dialog.findViewById(R.id.title); + final EditText editText = dialog.findViewById(R.id.editcip13); String cip13 = String.valueOf(editText.getText()); // TODO change the color of ok button when the number of character is correct. @@ -373,7 +375,11 @@ public class DrugListActivity extends AppCompatActivity { //alert.getButton(alert.BUTTON_POSITIVE).setEnabled(s.length() == 8); if (s.length() == 8) { ok.setEnabled(true); - ok.setBackground(ContextCompat.getDrawable(editText.getContext(), R.drawable.shadow_bg)); + ok.setBackground(Objects.requireNonNull(ContextCompat.getDrawable(editText.getContext(), R.drawable.rounded_btn))); + } + else { + ok.setEnabled(false); + ok.setBackground(Objects.requireNonNull(ContextCompat.getDrawable(editText.getContext(), R.drawable.rounded_btn_disabled))); } } }); @@ -401,7 +407,7 @@ public class DrugListActivity extends AppCompatActivity { private void askToAddInDB(Medicine aMedicine) { final Dialog dlg = new Dialog(this); dlg.requestWindowFeature(Window.FEATURE_NO_TITLE); - dlg.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT)); + Objects.requireNonNull(dlg.getWindow()).setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT)); dlg.setContentView(R.layout.custom_dialog_layout_one_button); dlg.setCancelable(true); MaterialTextView msg = dlg.findViewById(R.id.msg); diff --git a/app/src/main/res/layout/drug_detail.xml b/app/src/main/res/layout/drug_detail.xml index dc7a32e..31e9bdc 100644 --- a/app/src/main/res/layout/drug_detail.xml +++ b/app/src/main/res/layout/drug_detail.xml @@ -41,14 +41,14 @@ diff --git a/app/src/main/res/layout/input_dialog.xml b/app/src/main/res/layout/input_dialog.xml index 3b642ba..4a1e5ec 100644 --- a/app/src/main/res/layout/input_dialog.xml +++ b/app/src/main/res/layout/input_dialog.xml @@ -20,7 +20,6 @@ + + + + + + + + \ No newline at end of file