Created
January 5, 2017 08:57
-
-
Save babedev/662bd6a0a35f043980d02b19261da3e4 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
package com.babedev.javapoetcodelab.sample; | |
import android.app.Activity; | |
import android.os.Bundle; | |
import java.lang.Override; | |
class SampleActivity extends Activity implements SampleView { | |
private SamplePresenter mPresenter; | |
@Override | |
public void onCreate(Bundle savedInstanceState) { | |
// TODO setContentView() | |
mPresenter = new SamplePresenter(); | |
mPresenter.attachView(this); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment