Added chooser w/o task

This commit is contained in:
M66B
2022-07-14 08:23:17 +02:00
parent 969d48dab3
commit 62b7d4cc75
4 changed files with 46 additions and 18 deletions

View File

@@ -587,7 +587,7 @@ public class FragmentDialogOpenLink extends FragmentDialogBase {
}
}
Drawable android = context.getDrawable(R.drawable.twotone_android_24);
Drawable android = context.getDrawable(R.drawable.android_robot);
android.setBounds(0, 0, dp24, dp24);
pkgs.add(new Package(
android,
@@ -595,6 +595,12 @@ public class FragmentDialogOpenLink extends FragmentDialogBase {
"chooser",
false,
true));
pkgs.add(new Package(
android,
context.getString(R.string.title_select_app),
"chooser",
true,
true));
return pkgs;
}