stuart-d2
3/2/2014 - 5:16 PM

Notifications : Basic Toast!

Notifications : Basic Toast!

public class NotificationToastActivity extends Activity {
	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
		
		Button button = (Button) findViewById(R.id.toast_button);
		button.setOnClickListener(new OnClickListener() {
			
			@Override
			public void onClick(View v) {
				Toast.makeText(getApplicationContext(), "You're toast!", Toast.LENGTH_LONG).show();				
			}
		});
	}
}
=========================
Toast.makeText(getApplicationContext(), "You already have this location badge", Toast.LENGTH_SHORT).show();