Advertisement
Guest User

Untitled

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