package net.foucry.pilldroid; import android.app.Activity; import com.google.android.material.appbar.CollapsingToolbarLayout; import android.os.Bundle; import androidx.fragment.app.Fragment; 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 { /** * The fragment argument representing the item ID that this fragment * represents. */ public static final String ARG_ITEM_ID = "medicament"; /** * The dummy content this fragment is presenting. */ private Medicament medicament; /** * 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); assert getArguments() != null; 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. medicament = (Medicament) getArguments().getSerializable(ARG_ITEM_ID); Activity activity = this.getActivity(); assert activity != null; CollapsingToolbarLayout appBarLayout = activity.findViewById(R.id.toolbar_layout); if (appBarLayout != null) { appBarLayout.setTitle(medicament.getNom()); } } } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View detailView = inflater.inflate(R.layout.medicament_detail, container, false); View nameView; View adminModeView; View presentationView; View stockView; View priseView; View warningView; View alertView; // Show the dummy content as text in a TextView. if (medicament != null) { // Find each conponment of rootView nameView = detailView.findViewById(R.id.name_cell); TextView nameLabel = nameView.findViewById(R.id.label); TextView nameValeur = nameView.findViewById(R.id.valeur); nameLabel.setText(R.string.med_name_label); nameValeur.setText(medicament.getNom()); presentationView = detailView.findViewById(R.id.presentation_cell); TextView presentationLabel = presentationView.findViewById(R.id.label); TextView presentationValeur = presentationView.findViewById(R.id.valeur); presentationLabel.setText(R.string.med_presention_labal); presentationValeur.setText(medicament.getPresentation()); adminModeView = detailView.findViewById(R.id.administration_cell); TextView adminModeLabel = adminModeView.findViewById(R.id.label); TextView adminModeValeur = adminModeView.findViewById(R.id.valeur); adminModeLabel.setText(R.string.med_administationMode_label); adminModeValeur.setText(medicament.getMode_administration()); stockView = detailView.findViewById(R.id.stock_cell); TextView stockLibelle = (stockView.findViewById(R.id.libelle)); TextView stockValue = stockView.findViewById(R.id.valeur); stockLibelle.setText(R.string.med_current_stock_label); stockValue.setText(Double.toString(medicament.getStock())); stockValue.setHint(R.string.med_current_stock_label); stockValue.setSelectAllOnFocus(true); priseView = detailView.findViewById(R.id.prise_cell); TextView priseLibelle = priseView.findViewById(R.id.libelle); TextView priseValue = (priseView.findViewById(R.id.valeur)); priseLibelle.setText(R.string.med_take_label); priseValue.setText(Double.toString(medicament.getPrise())); priseValue.setHint(R.string.med_take_label); priseValue.setSelectAllOnFocus(true); warningView = detailView.findViewById(R.id.warning_cell); TextView warningLibelle = warningView.findViewById(R.id.libelle); TextView warningValue = warningView.findViewById(R.id.valeur); warningLibelle.setText(R.string.med_warningTherehold_label); warningValue.setText(Integer.toString(medicament.getWarnThreshold())); warningValue.setHint(R.string.med_warningTherehold_label); warningValue.setSelectAllOnFocus(true); alertView = detailView.findViewById(R.id.alert_cell); TextView alertLibelle = alertView.findViewById(R.id.libelle); TextView alertValue = alertView.findViewById(R.id.valeur); alertLibelle.setText(R.string.med_alertTherehold_label); alertValue.setText(Integer.toString(medicament.getAlertThreshold())); alertValue.setHint(R.string.med_alertTherehold_label); alertValue.setSelectAllOnFocus(true); } return detailView; } }