If you think the Android project fragments 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.cs4730.frag4demo;
//fromwww.java2s.comimport android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.TextView;
/**
* A simple {@link Fragment} subclass. Use the {@link TwoFragment#newInstance}
* factory method to create an instance of this fragment.
*
*/publicclass TwoFragment extends Fragment {
// TODO: Rename parameter arguments, choose names that match
// the fragment initialization parameters, e.g. ARG_ITEM_NUMBER
privatestaticfinal String ARG_PARAM1 = "param1";
privatestaticfinal String ARG_PARAM2 = "param2";
// TODO: Rename and change types of parameters
private String mParam1;
private String mParam2;
TextView tv1, tv2;
/**
* Use this factory method to create a new instance of this fragment using
* the provided parameters.
*
* @param param1
* Parameter 1.
* @param param2
* Parameter 2.
* @return A new instance of fragment TwoFragment.
*/// TODO: Rename and change types and number of parameters
publicstatic TwoFragment newInstance(String param1, String param2) {
TwoFragment fragment = new TwoFragment();
Bundle args = new Bundle();
args.putString(ARG_PARAM1, param1);
args.putString(ARG_PARAM2, param2);
fragment.setArguments(args);
return fragment;
}
public TwoFragment() {
// Required empty public constructor
}
@Override
publicvoid onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (getArguments() != null) {
mParam1 = getArguments().getString(ARG_PARAM1);
mParam2 = getArguments().getString(ARG_PARAM2);
}
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View myView = inflater.inflate(R.layout.fragment_two, container, false);
tv1 = (TextView) myView.findViewById(R.id.tf_tv1);
tv1.setText("Parameter1: "+mParam1);
tv2 = (TextView) myView.findViewById(R.id.tf_tv2);
tv2.setText("Parameter2: "+mParam2);
return myView;
}
}