Skip to content

Instantly share code, notes, and snippets.

@larkintuckerllc
Created November 27, 2017 01:01
Show Gist options
  • Save larkintuckerllc/62400224c67a6b3392ced8ff7079c723 to your computer and use it in GitHub Desktop.
Save larkintuckerllc/62400224c67a6b3392ced8ff7079c723 to your computer and use it in GitHub Desktop.
How-to Dagger 2 with Android: Part 1 - 1
...
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView dateTextView = findViewById(R.id.tvDate);
MyExample myExample = MyExample.getInstance();
dateTextView.setText((new Date(myExample.getDate())).toString());
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment