in order to keep my Application more stable and faster, and since i have alot of file picking actions in my application , i prefer to pick the files in a dialog instead of an activity , so the activity in background will not pause and restart.. currently this is the method that i am using :
Intent target = new Intent(Intent.ACTION_GET_CONTENT);
// The MIME data type filter
target .setType("*/*");
// Only return URIs that can be opened with ContentResolver
target .addCategory(Intent.CATEGORY_OPENABLE);
Intent intent = Intent.createChooser(
target, getString(R.string.expandable_title));
my question is how can i set theme of the opened activity to dialog guys? thanks alot