Back to project page disconnected-content-explorer-android.
The source code is released under:
MIT License
If you think the Android project disconnected-content-explorer-android 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 mil.nga.dice.report; // w ww . j a v a 2 s . c o m import mil.nga.dice.R; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.Menu; import android.view.MenuInflater; import android.view.MenuItem; /** * This activity is mostly just a 'shell' activity containing nothing more than * a {@link ReportDetailFragment}. */ public class ReportDetailActivity extends Activity { Report mReport; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_report_detail); Bundle bundle = getIntent().getExtras(); mReport = bundle.getParcelable("report"); setTitle(mReport.getTitle()); // Show the Up button in the action bar. getActionBar().setDisplayHomeAsUpEnabled(true); if (savedInstanceState == null) { // Create the detail fragment and add it to the activity // using a fragment transaction. Bundle arguments = new Bundle(); arguments.putString(ReportDetailFragment.ARG_ITEM_ID, getIntent().getStringExtra(ReportDetailFragment.ARG_ITEM_ID)); arguments.putParcelable(ReportDetailFragment.ARG_REPORT, mReport); ReportDetailFragment fragment = new ReportDetailFragment(); fragment.setArguments(arguments); getFragmentManager().beginTransaction() .add(R.id.report_detail_container, fragment).commit(); } } private void openNote() { Intent noteIntent = new Intent(this, NoteActivity.class); noteIntent.putExtra("report", mReport); startActivity(noteIntent); } @Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case android.R.id.home: finish(); return true; case R.id.open_note: openNote(); return true; } return super.onOptionsItemSelected(item); } @Override public boolean onCreateOptionsMenu(Menu menu) { MenuInflater inflater = getMenuInflater(); inflater.inflate(R.menu.report_menu, menu); return true; } }