Skip to content

Instantly share code, notes, and snippets.

@maydin
Created February 15, 2017 12:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maydin/090352032cce18db097eb560f73cf7dd to your computer and use it in GitHub Desktop.
Save maydin/090352032cce18db097eb560f73cf7dd to your computer and use it in GitHub Desktop.
Step1Presenter
public class Step1Presenter extends Presenter {
TextView textViewStep1;
public Step1Presenter(AppCompatActivity activity, View view) {
super(activity, view);
}
@Override
public void onCreateView() {
textViewStep1 = (TextView) view.findViewById(R.id.step1_textView);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment