Skip to content

Instantly share code, notes, and snippets.

View MWhyte's full-sized avatar

Michael Whyte MWhyte

View GitHub Profile
@MWhyte
MWhyte / MainActivity.java
Last active September 30, 2015 12:05
Using lambda's with android. With help from gradle-retrolambda
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
loginBtn = (Button) findViewById(R.id.login_btn);
loginBtn.setOnClickListener((View) -> login());
Log.i(TAG, "onCreate finished");
}