I have get the Android to load a file dialog for google drive after authorization. Now I have to do it on Xamarin Form but unable to find a file picker for google drive. Does google drive have a file picker for Xamarin Form.
public void RequestGoogleDrivePicker() {
IntentSender intentSender =
Android.Gms.Drive.DriveClass.DriveApi.NewOpenFileActivityBuilder ()
.SetMimeType (new string[] { "application/pdf" })
.Build (GoogleApiClient);
try {
StartIntentSenderForResult ( intentSender, GOOGLE_REQUESTING_OPENER_CODE, null, 0, 0, 0);
} catch (Android.Content.IntentSender.SendIntentException e) {
}
}