mirror of
https://github.com/jfoucry/Pilldroid.git
synced 2024-11-16 10:22:38 +01:00
70 lines
2.3 KiB
Java
70 lines
2.3 KiB
Java
|
package net.foucry.pilldroid;
|
||
|
|
||
|
import android.app.Activity;
|
||
|
import android.support.design.widget.CollapsingToolbarLayout;
|
||
|
import android.os.Bundle;
|
||
|
import android.support.v4.app.Fragment;
|
||
|
import android.view.LayoutInflater;
|
||
|
import android.view.View;
|
||
|
import android.view.ViewGroup;
|
||
|
import android.widget.TextView;
|
||
|
|
||
|
import net.foucry.pilldroid.dummy.DummyContent;
|
||
|
|
||
|
/**
|
||
|
* 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 = "item_id";
|
||
|
|
||
|
/**
|
||
|
* The dummy content this fragment is presenting.
|
||
|
*/
|
||
|
private DummyContent.DummyItem mItem;
|
||
|
|
||
|
/**
|
||
|
* 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);
|
||
|
|
||
|
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.
|
||
|
mItem = DummyContent.ITEM_MAP.get(getArguments().getString(ARG_ITEM_ID));
|
||
|
|
||
|
Activity activity = this.getActivity();
|
||
|
CollapsingToolbarLayout appBarLayout = (CollapsingToolbarLayout) activity.findViewById(R.id.toolbar_layout);
|
||
|
if (appBarLayout != null) {
|
||
|
appBarLayout.setTitle(mItem.content);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public View onCreateView(LayoutInflater inflater, ViewGroup container,
|
||
|
Bundle savedInstanceState) {
|
||
|
View rootView = inflater.inflate(R.layout.medicament_detail, container, false);
|
||
|
|
||
|
// Show the dummy content as text in a TextView.
|
||
|
if (mItem != null) {
|
||
|
((TextView) rootView.findViewById(R.id.medicament_detail)).setText(mItem.details);
|
||
|
}
|
||
|
|
||
|
return rootView;
|
||
|
}
|
||
|
}
|