Open Google Drive app
com.google.android.apps.docs.DRIVE_OPEN
Open Google Drive app
Use
public void startOpenGoogleDriveApp() {
Intent intent = new Intent("com.google.android.apps.docs.DRIVE_OPEN");
if (intent.resolveActivity(getPackageManager()) != null) {
startActivity(intent);
}
}Example intent filter
<activity ...>
<intent-filter>
<action android:name="com.google.android.apps.docs.DRIVE_OPEN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
Apps Providing an Implementation
Search on Google Play, AppBrain, Amazon App store or similar (not yet available - please make this happen!)