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();