Guest User

Untitled

a guest
May 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. @SuppressLint("WrongViewCast")
  2. @Override
  3. public void onCreate(Bundle savedInstanceState) {
  4. super.onCreate(savedInstanceState);
  5. setContentView(R.layout.activity_cadastro);
  6.  
  7. nome = (EditText) findViewById(R.id.edtNome);
  8. RE = (EditText) findViewById(R.id.edtRE);
  9. senha = (EditText) findViewById(R.id.edtSenha);
  10.  
  11. button4 = (Button) findViewById(R.id.button4);
  12.  
  13.  
  14. button4.setOnClickListener(this);
  15.  
  16. }
Add Comment
Please, Sign In to add comment