mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-24 07:01:05 +00:00
Added long press to force image dialog
This commit is contained in:
parent
d4a566f8c0
commit
c1d2ef0197
1 changed files with 12 additions and 4 deletions
|
@ -881,10 +881,10 @@ public class FragmentCompose extends FragmentBase {
|
||||||
onActionRecordAudio();
|
onActionRecordAudio();
|
||||||
return true;
|
return true;
|
||||||
} else if (action == R.id.menu_take_photo) {
|
} else if (action == R.id.menu_take_photo) {
|
||||||
onActionImage(true);
|
onActionImage(true, false);
|
||||||
return true;
|
return true;
|
||||||
} else if (action == R.id.menu_image) {
|
} else if (action == R.id.menu_image) {
|
||||||
onActionImage(false);
|
onActionImage(false, false);
|
||||||
return true;
|
return true;
|
||||||
} else if (action == R.id.menu_attachment) {
|
} else if (action == R.id.menu_attachment) {
|
||||||
onActionAttachment();
|
onActionAttachment();
|
||||||
|
@ -1657,6 +1657,14 @@ public class FragmentCompose extends FragmentBase {
|
||||||
else
|
else
|
||||||
bottom_navigation.getMenu().findItem(R.id.action_send).setTitle(R.string.title_send);
|
bottom_navigation.getMenu().findItem(R.id.action_send).setTitle(R.string.title_send);
|
||||||
|
|
||||||
|
media_bar.findViewById(R.id.menu_image).setOnLongClickListener(new View.OnLongClickListener() {
|
||||||
|
@Override
|
||||||
|
public boolean onLongClick(View v) {
|
||||||
|
onActionImage(false, true);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
bottom_navigation.findViewById(R.id.action_send).setOnLongClickListener(new View.OnLongClickListener() {
|
bottom_navigation.findViewById(R.id.action_send).setOnLongClickListener(new View.OnLongClickListener() {
|
||||||
@Override
|
@Override
|
||||||
public boolean onLongClick(View v) {
|
public boolean onLongClick(View v) {
|
||||||
|
@ -2315,10 +2323,10 @@ public class FragmentCompose extends FragmentBase {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void onActionImage(boolean photo) {
|
private void onActionImage(boolean photo, boolean force) {
|
||||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext());
|
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext());
|
||||||
boolean image_dialog = prefs.getBoolean("image_dialog", true);
|
boolean image_dialog = prefs.getBoolean("image_dialog", true);
|
||||||
if (image_dialog) {
|
if (image_dialog || force) {
|
||||||
Helper.hideKeyboard(view);
|
Helper.hideKeyboard(view);
|
||||||
|
|
||||||
Bundle args = new Bundle();
|
Bundle args = new Bundle();
|
||||||
|
|
Loading…
Reference in a new issue