Advertisement
Guest User

Untitled

a guest
Feb 14th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1.  
  2. Button information = (Button) findViewById(R.id.information);
  3. information.setOnClickListener(new View.OnClickListener() {
  4. @Override
  5. public void onClick(View v) {
  6. Context context = getApplicationContext();
  7. CharSequence text = "Grundlagen Java-Programmierung, Grundlagen Android-Anwendung(5SWS)";
  8. int duration = Toast.LENGTH_SHORT;
  9.  
  10. Toast toast = Toast.makeText(context, text, duration);
  11. toast.show();
  12. }
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement