删除ContextualActionBar

时间:2015-11-27 07:30:48

标签: android contextual-action-bar

我的应用程序使用ListView扩展App(扩展AppCompatActivity)。 标题行显示标题和后箭头。

将ContextualActionBar分配给ListView。 当ContextualActionBar变为活动状态时,因为长按一下ListView的一个项目,应该删除后退箭头。

请问,任何人都可以提示,如何删除ContextualActionBar的后箭头?

非常感谢你!

最好的问候

乌利

1 个答案:

答案 0 :(得分:0)

我们不建议删除后退箭头,但您可以将其指定为透明的可绘制

<style name="MyCustomTheme" parent="MyTheme">
    <item name="android:actionModeCloseDrawable">@drawable/transparent_drawable</item>
</style>

透明可绘制的地方是:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >

    <solid android:color="#00FFFFFF"/>

</shape>

然后在清单

中设置它
<activity
    android:name="MyActivity"
    android:theme="@style/MyCustomTheme"