Skip to content

Instantly share code, notes, and snippets.

@MonsterTechnoGit
Created May 13, 2018 06:28
Show Gist options
  • Save MonsterTechnoGit/e8e5789f34a31bfbac59ecde9874c53e to your computer and use it in GitHub Desktop.
Save MonsterTechnoGit/e8e5789f34a31bfbac59ecde9874c53e to your computer and use it in GitHub Desktop.
package com.monstertechno.loginuidesign1;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.TextView;
public class LogIn_Activity extends AppCompatActivity{
TextView text_forgot,text_social;
ImageView imageLogo, plus,facebook,twitter;
Button signin,signup;
EditText username,password;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(1);
getWindow().setFlags(1024, 1024);
setContentView(R.layout.activity_login);
text_forgot = (TextView) findViewById(R.id.text_forgot);
text_social = (TextView) findViewById(R.id.social_signIN);
imageLogo = (ImageView) findViewById(R.id.imageView);
plus = (ImageView) findViewById(R.id.plus);
facebook = (ImageView) findViewById(R.id.facebook);
twitter = (ImageView) findViewById(R.id.twitter);
signin = (Button) findViewById(R.id.signin);
signup = (Button) findViewById(R.id.signup);
username = (EditText) findViewById(R.id.username);
password = (EditText) findViewById(R.id.password);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment