Back to project page L5RHelper.
The source code is released under:
Copyright (c) 2010 Robert Uhl Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Sof...
If you think the Android project L5RHelper 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.uhl; /*from w w w . j av a 2s. co m*/ import com.uhl.db.DBServiceLocator; import com.uhl.db.DefaultViews; import com.uhl.db.IDBHelper; import com.uhl.db.Profile; import android.app.Activity; import android.app.AlertDialog; import android.content.DialogInterface; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.TextView; public class ProfileOverviewActivity extends Activity implements OnClickListener { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); dbHelper = DBServiceLocator.getDBHelper(this); profile = dbHelper.loadProfile(getIntent().getExtras().getInt("ID")); setContentView(R.layout.display_profile_data); DisplayData(); RegisterButtons(); SetupDeleteDialog(); } private AlertDialog.Builder deleteConfirmBuilder; private void SetupDeleteDialog() { deleteConfirmBuilder = new AlertDialog.Builder(this); deleteConfirmBuilder.setMessage("Are you sure you want to delete this character?") .setCancelable(false) .setPositiveButton("Yes", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { dbHelper.deleteProfile(profile.getId()); ProfileOverviewActivity.this.setResult(Activity.RESULT_OK); ProfileOverviewActivity.this.finish(); } }) .setNegativeButton("No", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { dialog.cancel(); } }); } private void RegisterButtons() { (this.<Button>GetView(R.id.delete_char)).setOnClickListener(this); (this.<Button>GetView(R.id.go_calculate)).setOnClickListener(this); (this.<Button>GetView(R.id.manage_character)).setOnClickListener(this); (this.<Button>GetView(R.id.manage_templates)).setOnClickListener(this); } @Override public void onClick(View e) { Button button = this.<Button>GetView(e.getId()); switch(button.getId()){ case R.id.delete_char:DeleteConfirm();break; case R.id.go_calculate: if(profile.getDefaultViewId() == DefaultViews.melee.getId()){ StartActivityForResult(MeleeRollCalculateActivity.class, profile.getId()); }else{ StartActivityForResult(CasterRollCalculateActivity.class, profile.getId()); } break; case R.id.manage_character: StartActivityForResult(EditCharacterActivity.class, profile.getId()); break; case R.id.manage_templates: StartActivityForResult(ManageTemplateView.class, profile.getId()); break; default: break; } } private void StartActivityForResult(Class<?> classInput, Integer Id) { Intent intent = new Intent(this, classInput); intent.putExtra("ID", Id); this.startActivity(intent); } private void DeleteConfirm() { AlertDialog aDialog = deleteConfirmBuilder.create(); aDialog.setOwnerActivity(this); aDialog.show(); } private void DisplayData() { (this.<TextView>GetView(R.id.character_name)).setText(profile.getName()); } @SuppressWarnings("unchecked") public <T extends View> T GetView(int id) { T result = null; try{ result = (T)findViewById(id);} catch(Exception e){ } return result; } private Profile profile; private IDBHelper dbHelper; }