- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我遇到了一个奇怪的问题。
当我使用 android holo 主题作为默认主题,然后在 webview 上选择文本时,上下文操作栏正确显示。
<style name="MyTheme" parent="Theme.AppCompat.Light">
</style>
但是当我使用 app compact holo 主题时,全选和复制操作都消失了。
<style name="MyTheme" parent="android:Theme.Holo.Light">
</style>
我的问题在哪里?我的应用程序支持 android 设备 4.0+
最佳答案
因为在您的 menu.xml 文件中,您使用属性 app:showAsAction="ifRoom"
作为非应用程序主题。请将 app:showAsAction="ifRoom"
更改为 android:showAsAction="ifRoom"
并且应该可以工作
例子
对于这种风格
<style name="AppTheme" parent="android:Theme.Holo.Light">
在菜单下工作
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".MainActivity">
<item android:id="@+id/pase"
android:title="@string/action_settings"
android:orderInCategory="100"
android:icon="@drawable/abc_ic_menu_paste_mtrl_am_alpha"
//look here is a different
android:showAsAction="ifRoom"/>
<item android:id="@+id/copy"
android:title="@string/action_settings"
android:icon="@drawable/abc_ic_menu_copy_mtrl_am_alpha"
android:orderInCategory="100"
android:showAsAction="ifRoom"/>
<item android:id="@+id/action_settings"
android:title="@string/action_settings"
android:orderInCategory="100"
android:showAsAction="never"/>
</menu>
对于这种风格
<style name="AppTheme" parent="Theme.AppCompat.Light">
在菜单下工作
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".MainActivity">
<item android:id="@+id/pase"
android:title="@string/action_settings"
android:orderInCategory="100"
android:icon="@drawable/abc_ic_menu_paste_mtrl_am_alpha"
//look here is a different
app:showAsAction="ifRoom"/>
<item android:id="@+id/copy"
android:title="@string/action_settings"
android:icon="@drawable/abc_ic_menu_copy_mtrl_am_alpha"
android:orderInCategory="100"
app:showAsAction="ifRoom"/>
<item android:id="@+id/action_settings"
android:title="@string/action_settings"
android:orderInCategory="100"
app:showAsAction="never"/>
</menu>
此外,如果您使用 Theme.AppCompat.Light
,您应该在代码中使用 ActivityActionBar。
关于Android appcompact 不显示上下文操作栏中的文本选择复制操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27900755/
我遇到了一个奇怪的问题。 当我使用 android holo 主题作为默认主题,然后在 webview 上选择文本时,上下文操作栏正确显示。 但是当我使用 app compact holo 主
我有一个问题。我的 Activity 有风格 @color/action_bar_background @color/action_bar_background @color
我最近通过 android sdk 更新到新的 android 5.0 并尝试使用 appcompact 添加 float 操作按钮 (FAB)。 我不想使用任何类型的外部库 如何使用 appcomp
如何在 appcompact7 alertdialog 中进行自定义验证?我的 alertdialog 中有一些输入,所以当我单击肯定按钮时,我想验证条件是否为真,如果条件返回 false 我只想显示
我正在使用 AppCompact 21.0.3 编写应用程序 如何修复此错误,但我在代码中遇到 addonpagechangelistener 错误? Faulty section:* pager.a
我刚刚在 eclipse 上启动了一个新的 android 项目。作为项目要求,我已将 appcompact-v7 支持库添加到我的 android 工作区中。 一旦 appcompat 导入完成,我
这个问题在这里已经有了答案: What's the enhancement of AppCompatActivity over ActionBarActivity? (6 个答案) 关闭 7 年前。
此问题已存在于此处。但我想一步一步地了解这一点。我把gradle中的依赖贴在dependencies下面。 compile 'com.android.support:appcompat-v7:25.3
我收到此错误 Error:Execution failed for task ':yourapp:packageAllDebugClassesForMultiDex'. > java.util.zip
如何使用 Google place API 获取 EditText 中的地点建议? 最佳答案 我建议您浏览 Google 的 get started guide第一的。然后将 Autocomplete
我正在尝试重新设计 Q-Municate,但我被抽屉导航重新设计任务困住了 我当前的抽屉导航看起来像这样 我想要我的抽屉导航按照这样的请求设计 关于此任务,我已经通过 StackOverFlow 给出
这个问题在这里已经有了答案: Failed to resolve: com.android.support:cardview-v7:26.0.0 android (26 个答案) 关闭 5 年前。
我是一名优秀的程序员,十分优秀!