Advertisement
Guest User

Untitled

a guest
Sep 20th, 2014
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. Intent intent = new Intent();
  2. intent.addCategory(Intent.CATEGORY_OPENABLE);
  3. intent.setType("text/csv");
  4. intent.setAction(Intent.ACTION_GET_CONTENT);
  5. startActivityForResult(Intent.createChooser(intent, getText(R.string.select_file)), 1);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement