2016-05-19 07:37:28 +02:00
|
|
|
package net.foucry.pilldroid;
|
|
|
|
|
|
|
|
import android.app.Activity;
|
2020-05-16 19:49:14 +02:00
|
|
|
|
|
|
|
import com.google.android.material.appbar.CollapsingToolbarLayout;
|
2016-05-19 07:37:28 +02:00
|
|
|
import android.os.Bundle;
|
2020-05-16 19:49:14 +02:00
|
|
|
import androidx.fragment.app.Fragment;
|
|
|
|
|
2016-05-19 07:37:28 +02:00
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
import android.widget.TextView;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A fragment representing a single Medicament detail screen.
|
|
|
|
* This fragment is either contained in a {@link MedicamentListActivity}
|
|
|
|
* in two-pane mode (on tablets) or a {@link MedicamentDetailActivity}
|
|
|
|
* on handsets.
|
|
|
|
*/
|
|
|
|
public class MedicamentDetailFragment extends Fragment {
|
2020-04-21 21:35:28 +02:00
|
|
|
|
2016-05-19 07:37:28 +02:00
|
|
|
/**
|
|
|
|
* The fragment argument representing the item ID that this fragment
|
|
|
|
* represents.
|
|
|
|
*/
|
2016-05-22 16:05:35 +02:00
|
|
|
public static final String ARG_ITEM_ID = "medicament";
|
2016-05-19 07:37:28 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The dummy content this fragment is presenting.
|
|
|
|
*/
|
2016-05-22 16:05:35 +02:00
|
|
|
private Medicament medicament;
|
2016-05-19 07:37:28 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Mandatory empty constructor for the fragment manager to instantiate the
|
|
|
|
* fragment (e.g. upon screen orientation changes).
|
|
|
|
*/
|
|
|
|
public MedicamentDetailFragment() {
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
|
2020-06-12 18:04:36 +02:00
|
|
|
assert getArguments() != null;
|
2016-05-19 07:37:28 +02:00
|
|
|
if (getArguments().containsKey(ARG_ITEM_ID)) {
|
|
|
|
// Load the dummy content specified by the fragment
|
|
|
|
// arguments. In a real-world scenario, use a Loader
|
|
|
|
// to load content from a content provider.
|
2016-05-22 16:05:35 +02:00
|
|
|
medicament = (Medicament) getArguments().getSerializable(ARG_ITEM_ID);
|
2016-05-19 07:37:28 +02:00
|
|
|
|
|
|
|
Activity activity = this.getActivity();
|
2020-07-18 20:17:24 +02:00
|
|
|
assert activity != null;
|
2020-04-24 21:19:32 +02:00
|
|
|
CollapsingToolbarLayout appBarLayout = activity.findViewById(R.id.toolbar_layout);
|
2016-05-19 07:37:28 +02:00
|
|
|
if (appBarLayout != null) {
|
2016-05-22 16:05:35 +02:00
|
|
|
appBarLayout.setTitle(medicament.getNom());
|
2016-05-19 07:37:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2020-04-12 10:32:00 +02:00
|
|
|
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
|
2016-05-22 16:05:35 +02:00
|
|
|
View detailView = inflater.inflate(R.layout.medicament_detail, container, false);
|
|
|
|
View nameView;
|
|
|
|
View adminModeView;
|
|
|
|
View presentationView;
|
|
|
|
View stockView;
|
|
|
|
View priseView;
|
|
|
|
View warningView;
|
|
|
|
View alertView;
|
2016-05-19 07:37:28 +02:00
|
|
|
|
|
|
|
// Show the dummy content as text in a TextView.
|
2016-05-22 16:05:35 +02:00
|
|
|
if (medicament != null) {
|
|
|
|
// Find each conponment of rootView
|
|
|
|
nameView = detailView.findViewById(R.id.name_cell);
|
2020-02-19 10:49:16 +01:00
|
|
|
TextView nameLabel = nameView.findViewById(R.id.label);
|
|
|
|
TextView nameValeur = nameView.findViewById(R.id.valeur);
|
2020-05-23 19:12:26 +02:00
|
|
|
nameLabel.setText(R.string.med_name_label);
|
2016-05-22 16:05:35 +02:00
|
|
|
nameValeur.setText(medicament.getNom());
|
|
|
|
|
|
|
|
presentationView = detailView.findViewById(R.id.presentation_cell);
|
2020-02-19 10:49:16 +01:00
|
|
|
TextView presentationLabel = presentationView.findViewById(R.id.label);
|
|
|
|
TextView presentationValeur = presentationView.findViewById(R.id.valeur);
|
2020-05-23 19:12:26 +02:00
|
|
|
presentationLabel.setText(R.string.med_presention_labal);
|
2016-05-22 16:05:35 +02:00
|
|
|
presentationValeur.setText(medicament.getPresentation());
|
|
|
|
|
|
|
|
adminModeView = detailView.findViewById(R.id.administration_cell);
|
2020-02-19 10:49:16 +01:00
|
|
|
TextView adminModeLabel = adminModeView.findViewById(R.id.label);
|
|
|
|
TextView adminModeValeur = adminModeView.findViewById(R.id.valeur);
|
2020-05-23 19:12:26 +02:00
|
|
|
adminModeLabel.setText(R.string.med_administationMode_label);
|
2016-05-22 16:05:35 +02:00
|
|
|
adminModeValeur.setText(medicament.getMode_administration());
|
|
|
|
|
|
|
|
stockView = detailView.findViewById(R.id.stock_cell);
|
2020-02-19 10:49:16 +01:00
|
|
|
TextView stockLibelle = (stockView.findViewById(R.id.libelle));
|
|
|
|
TextView stockValue = stockView.findViewById(R.id.valeur);
|
2020-05-23 19:12:26 +02:00
|
|
|
stockLibelle.setText(R.string.med_current_stock_label);
|
2016-05-22 16:05:35 +02:00
|
|
|
stockValue.setText(Double.toString(medicament.getStock()));
|
2021-04-04 20:18:16 +02:00
|
|
|
stockValue.setHint(R.string.med_current_stock_label);
|
|
|
|
stockValue.setSelectAllOnFocus(true);
|
2016-05-22 16:05:35 +02:00
|
|
|
|
|
|
|
priseView = detailView.findViewById(R.id.prise_cell);
|
2020-02-19 10:49:16 +01:00
|
|
|
TextView priseLibelle = priseView.findViewById(R.id.libelle);
|
|
|
|
TextView priseValue = (priseView.findViewById(R.id.valeur));
|
2020-05-23 19:12:26 +02:00
|
|
|
priseLibelle.setText(R.string.med_take_label);
|
2016-05-22 16:05:35 +02:00
|
|
|
priseValue.setText(Double.toString(medicament.getPrise()));
|
2021-04-04 20:18:16 +02:00
|
|
|
priseValue.setHint(R.string.med_take_label);
|
|
|
|
priseValue.setSelectAllOnFocus(true);
|
2016-05-22 16:05:35 +02:00
|
|
|
|
|
|
|
warningView = detailView.findViewById(R.id.warning_cell);
|
2020-04-24 21:19:32 +02:00
|
|
|
TextView warningLibelle = warningView.findViewById(R.id.libelle);
|
|
|
|
TextView warningValue = warningView.findViewById(R.id.valeur);
|
2020-05-23 19:12:26 +02:00
|
|
|
warningLibelle.setText(R.string.med_warningTherehold_label);
|
2016-05-22 16:05:35 +02:00
|
|
|
warningValue.setText(Integer.toString(medicament.getWarnThreshold()));
|
2021-04-04 20:18:16 +02:00
|
|
|
warningValue.setHint(R.string.med_warningTherehold_label);
|
|
|
|
warningValue.setSelectAllOnFocus(true);
|
2016-05-22 16:05:35 +02:00
|
|
|
|
|
|
|
alertView = detailView.findViewById(R.id.alert_cell);
|
2020-02-19 10:49:16 +01:00
|
|
|
TextView alertLibelle = alertView.findViewById(R.id.libelle);
|
|
|
|
TextView alertValue = alertView.findViewById(R.id.valeur);
|
2021-04-04 20:18:16 +02:00
|
|
|
alertLibelle.setText(R.string.med_alertTherehold_label);
|
2016-05-22 16:05:35 +02:00
|
|
|
alertValue.setText(Integer.toString(medicament.getAlertThreshold()));
|
2021-04-04 20:18:16 +02:00
|
|
|
alertValue.setHint(R.string.med_alertTherehold_label);
|
|
|
|
alertValue.setSelectAllOnFocus(true);
|
2016-05-19 07:37:28 +02:00
|
|
|
}
|
|
|
|
|
2016-05-22 16:05:35 +02:00
|
|
|
return detailView;
|
2016-05-19 07:37:28 +02:00
|
|
|
}
|
|
|
|
}
|