Notification filtering fixes (#1232)
* fix popup menu not shown on Android 5 * use correct no button for notification clearing confirmation dialog
This commit is contained in:
parent
0ee5dd866d
commit
28a76c1a5f
1 changed files with 7 additions and 8 deletions
|
@ -255,14 +255,11 @@ public class NotificationsFragment extends SFragment implements
|
||||||
}
|
}
|
||||||
|
|
||||||
private void confirmClearNotifications(){
|
private void confirmClearNotifications(){
|
||||||
AlertDialog.Builder dialog = new AlertDialog.Builder(getContext());
|
new AlertDialog.Builder(getContext())
|
||||||
dialog.setMessage(R.string.notification_clear_text);
|
.setMessage(R.string.notification_clear_text)
|
||||||
|
.setPositiveButton(android.R.string.yes, (DialogInterface dia, int which) -> clearNotifications())
|
||||||
dialog.setPositiveButton(android.R.string.yes, (DialogInterface dia, int which) -> clearNotifications());
|
.setNegativeButton(android.R.string.no, null)
|
||||||
|
.show();
|
||||||
dialog.setNeutralButton(android.R.string.no, null);
|
|
||||||
|
|
||||||
dialog.show();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void handleFavEvent(FavoriteEvent event) {
|
private void handleFavEvent(FavoriteEvent event) {
|
||||||
|
@ -646,6 +643,8 @@ public class NotificationsFragment extends SFragment implements
|
||||||
}
|
}
|
||||||
window.setContentView(view);
|
window.setContentView(view);
|
||||||
window.setFocusable(true);
|
window.setFocusable(true);
|
||||||
|
window.setWidth(ViewGroup.LayoutParams.WRAP_CONTENT);
|
||||||
|
window.setHeight(ViewGroup.LayoutParams.WRAP_CONTENT);
|
||||||
window.showAsDropDown(buttonFilter);
|
window.showAsDropDown(buttonFilter);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue