我对 EditText 的 ContextMenu 的样式有疑问。
我创建了新对话框:
Dialog newServerDialog = new Dialog(getContext(), R.style.CustomDialogStyleServerDetails);
newServerDialog.setContentView(newServerDialogLayout);
newServerDialog.setTitle(R.string.server_details_new_title_text);
newServerDialog.getWindow().setLayout(
android.view.ViewGroup.LayoutParams.FILL_PARENT,
android.view.ViewGroup.LayoutParams.WRAP_CONTENT);
newServerDialog.setCancelable(true);
这是CustomDialogStyleServerDetails样式:
<style name="CustomDialogStyleServerDetails" parent="@android:style/Theme.Dialog">
<item name="android:background">@drawable/server_details_background_repeat</item>
<item name="android:windowTitleStyle">@style/DialogWindowTitle</item>
</style>
和DialogWindowTitle样式
<style name="DialogWindowTitle">
<item name="android:maxLines">1</item>
<item name="android:scrollHorizontally">true</item>
<item name="android:textAppearance">@style/customDialogTextAppearance</item>
<item name="android:gravity">center_horizontal|center_vertical</item>
<item name="android:background">@drawable/server_details_title_background_repeat</item>
</style>
对话框看起来像我想要的:(抱歉,我还不能发布图片)
但是 EditText 的 ContextMenu 从我的对话框中获取样式
有什么办法,如何将默认样式设置为 ContextMenu?
我没有找到任何解决此问题的方法。
所有帮助将不胜感激!
谢谢你。
编辑:我的解决方案:创建一个扩展 Dialog 的自定义类(称为 DialogServer)。
编辑#2:不,看起来这不是正确的解决方案。
我试过这个构造函数:
public DialogServer(Context context, int theme)
问题仍然存在
使用此构造函数:
public DialogServer(Context context)
contextmenu 的样式还可以,但是对话框的样式不见了。