Created
November 13, 2016 10:12
-
-
Save mplacona/a7fa14dcad8b09aa5a7afede9d6b3982 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MainActivity extends AppCompatActivity { | |
@BindView(R.id.login_et) | |
EditText mLogin; | |
@BindView(R.id.password_et) | |
EditText mPassword; | |
@BindView(R.id.login_bt) | |
Button mLoginButton; | |
@BindDrawable(android.R.drawable.presence_busy) | |
Drawable mInvalidField; | |
@BindDrawable(android.R.drawable.presence_online) | |
Drawable mValidField; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment