Advertisement
Guest User

Gutefrage Pastebin

a guest
Aug 30th, 2017
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. ...........{
  2. @Override
  3. protected void onCreate(Bundle savedInstanceState) {
  4. super.onCreate(savedInstanceState);
  5. setContentView(activity_spiel);
  6.  
  7. conlayout = (ConstraintLayout) findViewById(R.id.constraint); //mein Layout
  8.  
  9. conlayout.setOnClickListener(new View.OnClickListener() {
  10. @Override
  11. public void onClick(View v) {
  12. dorfschlaeftein(); //hier möchte ich [dorfschlaeftein()] direkt starten
  13. }
  14. });
  15. }
  16. ConstraintLayout conlayout;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement