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