I Try code for a open Documentation File but Also it's take a .apk File
How to avoid .apk extension Other wise This code work perfect to select other document
See Below Code for a Open Documentation File:
@Override
    public void onClick(View v) {
        switch (v.getId()){
            case R.id.rlSelectFile:
                Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
                intent.addCategory(Intent.CATEGORY_OPENABLE);
                intent.setType("application/x-excel|application/pdf|text/plain|text/csv|image/*");
                //intent.putExtra(Intent.EXTRA_MIME_TYPES, mimeTypes);
                startActivityForResult(intent, 1);
                /*Intent intent = new Intent(Intent.ACTION_PICK);
                startActivityForResult(intent,1);*/
                break;
        }
    }
Not Only .apk but also How to avoid any Extension