Android Open Source - AgileSmsGenerator Programmation Detail Fragment






From Project

Back to project page AgileSmsGenerator.

License

The source code is released under:

GNU General Public License

If you think the Android project AgileSmsGenerator listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package edu.emd.agilesmsgenerator;
//  ww  w.  j a v  a  2 s . co m
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 edu.emd.agilesmsgenerator.dummy.DummyContent;

/**
 * A fragment representing a single Programmation detail screen. This fragment
 * is either contained in a {@link ProgrammationListActivity} in two-pane mode
 * (on tablets) or a {@link ProgrammationDetailActivity} on handsets.
 */
public class ProgrammationDetailFragment 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 ProgrammationDetailFragment() {
  }

  @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));
    }
  }

  @Override
  public View onCreateView(LayoutInflater inflater, ViewGroup container,
      Bundle savedInstanceState) {
    View rootView = inflater.inflate(
        R.layout.fragment_programmation_detail, container, false);

    // Show the dummy content as text in a TextView.
    if (mItem != null) {
      ((TextView) rootView.findViewById(R.id.programmation_detail))
          .setText(mItem.id);
    }

    return rootView;
  }
}




Java Source Code List

edu.emd.agilesmsgenerator.ProgrammationDetailActivity.java
edu.emd.agilesmsgenerator.ProgrammationDetailFragment.java
edu.emd.agilesmsgenerator.ProgrammationListActivity.java
edu.emd.agilesmsgenerator.ProgrammationListFragment.java
edu.emd.agilesmsgenerator.core.Repetition.java
edu.emd.agilesmsgenerator.core.SimpleSmsSender.java
edu.emd.agilesmsgenerator.core.SmsSender.java
edu.emd.agilesmsgenerator.core.Sms.java
edu.emd.agilesmsgenerator.core.StyleSMSDefault.java
edu.emd.agilesmsgenerator.core.StyleSMS.java
edu.emd.agilesmsgenerator.core.StyleSmsNewYear.java
edu.emd.agilesmsgenerator.dummy.DummyContent.java