Android AppCompat 22.1 text in EditText of an AlertDialog cannot be copied -
as title, when use appcompat 22.1, alertdialog in appcompat, when having edittext inside dialog , text selected, "copy" , "paste" buttons(the contextual actionbar) laid under dialog instead of overlaying , buttons cannot touched user(showed in picture below). how can fix this? thanks.
edit: theme style related question follows:
<style name="theme.darkbase" parent="@style/theme.appcompat.noactionbar"> <item name="windowactionmodeoverlay">true</item> <item name="actionmodebackground">@color/pink_a400 </item> </style> <style name="theme.indigodark" parent="@style/theme.darkbase"> <item name="colorprimary">@color/indigo_500</item> <item name="colorprimarydark">@color/indigo_700</item> <item name="coloraccent">@color/indigo_a400</item> </style>
Comments
Post a Comment