Skip to content

Instantly share code, notes, and snippets.

@orhanobut
Created September 22, 2015 21:05
Show Gist options
  • Save orhanobut/ddf011d6a12a67abed76 to your computer and use it in GitHub Desktop.
Save orhanobut/ddf011d6a12a67abed76 to your computer and use it in GitHub Desktop.
public class AccountActivity extends Activity {
ImageHelper imageHelper;
@Override public void onCreate(Bundle bundle){
...
imageHelper.onCreate(bundle);
}
@Override public void onDestroy() {
imageHelper.onDestroy();
...
}
public void onGaleryClicked() {
imageHelper.showGalery();
}
public void onUploadClicked() {
imageHelper.takePhoto();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment