Guest User

Untitled

a guest
May 18th, 2018
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. package com.monstertechno.loginuidesign1;
  2.  
  3. import android.os.Bundle;
  4. import android.support.v7.app.AppCompatActivity;
  5. import android.widget.Button;
  6. import android.widget.EditText;
  7. import android.widget.ImageView;
  8. import android.widget.TextView;
  9.  
  10. public class LogIn_Activity extends AppCompatActivity{
  11.  
  12. TextView text_forgot,text_social;
  13. ImageView imageLogo, plus,facebook,twitter;
  14. Button signin,signup;
  15. EditText username,password;
  16.  
  17. @Override
  18. protected void onCreate(Bundle savedInstanceState) {
  19. super.onCreate(savedInstanceState);
  20. requestWindowFeature(1);
  21. getWindow().setFlags(1024, 1024);
  22. setContentView(R.layout.activity_login);
  23.  
  24. text_forgot = (TextView) findViewById(R.id.text_forgot);
  25. text_social = (TextView) findViewById(R.id.social_signIN);
  26.  
  27. imageLogo = (ImageView) findViewById(R.id.imageView);
  28. plus = (ImageView) findViewById(R.id.plus);
  29. facebook = (ImageView) findViewById(R.id.facebook);
  30. twitter = (ImageView) findViewById(R.id.twitter);
  31.  
  32. signin = (Button) findViewById(R.id.signin);
  33. signup = (Button) findViewById(R.id.signup);
  34.  
  35. username = (EditText) findViewById(R.id.username);
  36. password = (EditText) findViewById(R.id.password);
  37.  
  38.  
  39. }
  40.  
  41.  
  42. }
Add Comment
Please, Sign In to add comment