googleworkspace / android-samples

Android samples for Google Workspace APIs
Apache License 2.0
636 stars 410 forks source link

super.onCreate #34

Closed CoolMind closed 9 years ago

CoolMind commented 9 years ago

Hello! In https://github.com/googledrive/android-demos/blob/master/src/com/google/android/gms/drive/sample/demo/ListFilesInFolderActivity.java it is written:

@Override
public void onConnected(Bundle connectionHint) {
    super.onCreate(connectionHint);
    setContentView(R.layout.activity_listfiles);

I think it's a slip of the pen (maybe copy & paste from https://github.com/googledrive/android-demos/blob/master/src/com/google/android/gms/drive/sample/demo/ListFilesActivity.java). Maybe delete a line with super.onCreate?

kroikie commented 9 years ago

Thanks @CoolMind

CoolMind commented 9 years ago

@kroikie: glad to hear you again. EDIT: Sorry, maybe I'm wrong and it really needs super.onCreate.

kroikie commented 9 years ago

Updated to include onCreate and onConnected overrides.

CoolMind commented 9 years ago

Thanks, @kroikie! Could you, please, also edit a contents of https://github.com/googledrive/android-demos/blob/master/src/com/google/android/gms/drive/sample/demo/QueryFilesInFolderActivity.java?

kroikie commented 9 years ago

Done.