Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /**
  2. * Listener for Preferences Button
  3. * @param view
  4. */
  5. public void preferencesClick(View view){
  6.  
  7.     PreferencesMode preferencesMode = new PreferencesMode(this);
  8.     preferencesMode.setFirstName(((EditText)findViewById(R.id.editText_firstname)).getText().toString());
  9.     preferencesMode.setLastName(((EditText) findViewById(R.id.editText_lastname)).getText().toString());
  10.  
  11.     startActivity(new Intent(this,PreferencesActivity.class));
  12. }