Advertisement
Guest User

Untitled

a guest
May 26th, 2019
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.73 KB | None | 0 0
  1. package com.sourceit.butterknife;
  2.  
  3. import androidx.appcompat.app.AppCompatActivity;
  4. import butterknife.BindView;
  5. import butterknife.ButterKnife;
  6.  
  7. import android.content.Intent;
  8. import android.os.Bundle;
  9. import android.widget.Button;
  10. import android.widget.EditText;
  11.  
  12. public class PasswordActivity extends AppCompatActivity {
  13.  
  14.     @BindView(R.id.ap_password)
  15.     EditText password;
  16.     @BindView(R.id.ap_registration)
  17.     Button registration;
  18.  
  19.     @Override
  20.     protected void onCreate(Bundle savedInstanceState) {
  21.         super.onCreate(savedInstanceState);
  22.         setContentView(R.layout.activity_password);
  23.         ButterKnife.bind(this);
  24.  
  25.         String email = getIntent().getStringExtra(Intent.EXTRA_EMAIL);
  26.     }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement