Advertisement
Guest User

java

a guest
Sep 22nd, 2014
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. RelativeLayout login_with_email = (RelativeLayout) findViewById(R.id.login_with_email);
  2.  
  3. login_with_email.setOnClickListener(new OnClickListener() {
  4.  
  5. @Override
  6. public void onClick(View v) {
  7.  
  8. et_email.setVisibility(View.VISIBLE);
  9. icon_email_black.setVisibility(View.GONE);
  10. icon_email_red.setVisibility(View.VISIBLE);
  11.  
  12. }
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement