mirror of
https://github.com/SimpleMobileTools/Simple-File-Manager.git
synced 2025-04-04 13:41:50 +02:00
some visual change + minor code refactoring
This commit is contained in:
parent
e4f1e668db
commit
fcca502faf
@ -78,13 +78,12 @@ public class ItemsFragment extends android.support.v4.app.Fragment implements Ad
|
|||||||
} else {
|
} else {
|
||||||
final String path = item.getPath();
|
final String path = item.getPath();
|
||||||
final File file = new File(path);
|
final File file = new File(path);
|
||||||
MimeTypeMap myMime = MimeTypeMap.getSingleton();
|
final String mimeType = MimeTypeMap.getSingleton().getMimeTypeFromExtension(Utils.getFileExtension(path));
|
||||||
Intent newIntent = new Intent(Intent.ACTION_VIEW);
|
final Intent intent = new Intent(Intent.ACTION_VIEW);
|
||||||
String mimeType = myMime.getMimeTypeFromExtension(Utils.getFileExtension(path));
|
intent.setDataAndType(Uri.fromFile(file), mimeType);
|
||||||
newIntent.setDataAndType(Uri.fromFile(file), mimeType);
|
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||||
newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
|
||||||
try {
|
try {
|
||||||
startActivity(newIntent);
|
startActivity(intent);
|
||||||
} catch (ActivityNotFoundException e) {
|
} catch (ActivityNotFoundException e) {
|
||||||
Utils.showToast(getContext(), R.string.no_app_found);
|
Utils.showToast(getContext(), R.string.no_app_found);
|
||||||
}
|
}
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
android:id="@+id/items_list"
|
android:id="@+id/items_list"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
android:clipToPadding="false"
|
||||||
android:paddingLeft="@dimen/activity_margin"/>
|
android:paddingLeft="@dimen/activity_margin"/>
|
||||||
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user