kopia lustrzana https://github.com/ryukoposting/Signal-Android
Fix emoji variation selector on older devices.
Weird platform-specific bug was preventing the display of the PopupWindow.fork-5.53.8
rodzic
4ebca9ddde
commit
446585ad68
|
@ -20,12 +20,13 @@ public class EmojiVariationSelectorPopup extends PopupWindow {
|
|||
private final EmojiSelectionListener listener;
|
||||
|
||||
public EmojiVariationSelectorPopup(@NonNull Context context, @NonNull EmojiSelectionListener listener) {
|
||||
super(context);
|
||||
super(LayoutInflater.from(context).inflate(R.layout.emoji_variation_selector, null),
|
||||
ViewGroup.LayoutParams.WRAP_CONTENT,
|
||||
ViewGroup.LayoutParams.WRAP_CONTENT);
|
||||
this.context = context;
|
||||
this.listener = listener;
|
||||
this.list = (ViewGroup) LayoutInflater.from(context).inflate(R.layout.emoji_variation_selector, null);
|
||||
this.list = (ViewGroup) getContentView();
|
||||
|
||||
setContentView(list);
|
||||
setBackgroundDrawable(null);
|
||||
setOutsideTouchable(true);
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue