在 Appcompat ActionBar 后面显示 ImageView
Show the ImageView behind the Appcompat ActionBar
我使用的主题是:
<style name="CustomActionBarTheme" parent="@style/Theme.AppCompat">
<item name="android:windowActionBarOverlay">true</item>
<!-- Support library compatibility -->
<item name="windowActionBarOverlay">true</item>
</style>
我想在 ActionBar 后面部分显示 ImageView。我已尝试 Show ImageView partly behind transparent ActionBar 并在 google 上搜索,但找不到合适的解决方案。
更好用Toolbar or Support Toolbar
使用工具栏,您可以像添加任何其他视图一样将其添加到 XML 文件中。
在你的 Activity onCreate 中调用 setActionBar(toolbar) / setSupportActionBar(toolbar)
或者尝试在您的样式中添加这两行:
<item name="android:windowActionBarOverlay">true</item>
<!-- Support library compatibility -->
<item name="windowActionBarOverlay">true</item>
但是使用工具栏其实很简单,而且是新标准。
阅读此内容开始:http://android-developers.blogspot.de/2014/10/appcompat-v21-material-design-for-pre.html
我使用的主题是:
<style name="CustomActionBarTheme" parent="@style/Theme.AppCompat">
<item name="android:windowActionBarOverlay">true</item>
<!-- Support library compatibility -->
<item name="windowActionBarOverlay">true</item>
</style>
我想在 ActionBar 后面部分显示 ImageView。我已尝试 Show ImageView partly behind transparent ActionBar 并在 google 上搜索,但找不到合适的解决方案。
更好用Toolbar or Support Toolbar
使用工具栏,您可以像添加任何其他视图一样将其添加到 XML 文件中。
在你的 Activity onCreate 中调用 setActionBar(toolbar) / setSupportActionBar(toolbar)
或者尝试在您的样式中添加这两行:
<item name="android:windowActionBarOverlay">true</item>
<!-- Support library compatibility -->
<item name="windowActionBarOverlay">true</item>
但是使用工具栏其实很简单,而且是新标准。
阅读此内容开始:http://android-developers.blogspot.de/2014/10/appcompat-v21-material-design-for-pre.html