Estou montando um app simples, que lê um PDF e o transforma em String através do PDFbox. MAs estou com duvida: qual intent devo usar para abrir a galeria do celular e selecionar um arquivo PDF, mostrando seu titulo em uma TextView? Tentei o abaixo, baseado nos docs da Google, sem sucesso:
btnCarregaArq.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
intent.setType("pdf/*");
intent.addCategory(Intent.CATEGORY_OPENABLE);
// Only the system receives the ACTION_OPEN_DOCUMENT, so no need to test.
startActivityForResult(intent, REQUEST);
}