Skip to content

Instantly share code, notes, and snippets.

@varundwarkani
Created May 8, 2020 18:10
Show Gist options
  • Save varundwarkani/0f93bb47f50c241704c3a76db23cf615 to your computer and use it in GitHub Desktop.
Save varundwarkani/0f93bb47f50c241704c3a76db23cf615 to your computer and use it in GitHub Desktop.
private void restoreDBIntent() {
Intent i = new Intent(Intent.ACTION_GET_CONTENT);
i.setType("*/*");
startActivityForResult(Intent.createChooser(i, "Select DB File"), 12);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment