Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. protected void onCreate(Bundle savedInstanceState) {
  2. super.onCreate(savedInstanceState);
  3. setContentView(R.layout.activity_primera);
  4.  
  5. tv_Mensaje = (TextView) findViewById(R.id.tvMensaje);
  6. }
  7.  
  8. public void clickBoton(View v){
  9. tv_Mensaje.setText("Esto se cambió en tiempo de ejecucion");
  10. Toast.makeText(this, "un dulcecito para los niños", Toast.LENGTH_LONG).show();
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement