some visual change + minor code refactoring

This commit is contained in:
tibbi 2016-07-13 16:32:36 +02:00
parent e4f1e668db
commit fcca502faf
2 changed files with 6 additions and 6 deletions

View File

@ -78,13 +78,12 @@ public class ItemsFragment extends android.support.v4.app.Fragment implements Ad
} else {
final String path = item.getPath();
final File file = new File(path);
MimeTypeMap myMime = MimeTypeMap.getSingleton();
Intent newIntent = new Intent(Intent.ACTION_VIEW);
String mimeType = myMime.getMimeTypeFromExtension(Utils.getFileExtension(path));
newIntent.setDataAndType(Uri.fromFile(file), mimeType);
newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
final String mimeType = MimeTypeMap.getSingleton().getMimeTypeFromExtension(Utils.getFileExtension(path));
final Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), mimeType);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
try {
startActivity(newIntent);
startActivity(intent);
} catch (ActivityNotFoundException e) {
Utils.showToast(getContext(), R.string.no_app_found);
}

View File

@ -9,6 +9,7 @@
android:id="@+id/items_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clipToPadding="false"
android:paddingLeft="@dimen/activity_margin"/>
</RelativeLayout>