Back to project page easypgp.
The source code is released under:
GNU General Public License
If you think the Android project easypgp listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.sawyer.easypgp; //w w w .j a va 2 s . c o m import android.os.Bundle; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; public class DecodeFragment extends Fragment { @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Define the xml file for this fragment View view = inflater.inflate(R.layout.fragment_decode, container, false); // Setup handles to view objects here // etFoo = (EditText) view.findViewById(R.id.etFoo); return view; } @Override public void onResume() { super.onResume(); // Set title getActivity().getActionBar().setTitle( R.string.title_activity_decode_fragment); } }