Skip to content

Instantly share code, notes, and snippets.

@glnix
Created October 27, 2016 06:46
Show Gist options
  • Save glnix/3c8c133521a635855c12a362e6abe082 to your computer and use it in GitHub Desktop.
Save glnix/3c8c133521a635855c12a362e6abe082 to your computer and use it in GitHub Desktop.
public class CallActivity extends AppCompatActivity implements ICallActivity {
CallPresenter presenter;
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_call);
ButterKnife.bind(this);
Picasso.with(this).load(R.drawable.operator_girl).transform(new CircleTransform()).into(operatorPhoto);
presenter = new CallPresenter(this);
}
//etc
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment