操作栏背景图片
我继承了 Holo Light 主题,并使用以下内容自定义了 ActionBar 的背景:
styles.xml 的内容
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="ActionBar" parent="@android:style/Widget.Holo.ActionBar">
<item name="android:background">@drawable/actionbar_background</item>
</style>
<style name="MyTheme" parent="@android:style/Theme.Holo.Light">
<item name="android:actionBarStyle">@style/ActionBar</item>
</style>
</resources>
actionbar_background.xml 的内容
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@raw/actionbar_background"
android:tileMode="repeat" />
图像不是重复,而是拉伸,知道为什么 android:tileMode="repeat"没有应用?
提前致谢
I've inherited the Holo Light Theme and customized the background of the ActionBar with the following:
Content of styles.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="ActionBar" parent="@android:style/Widget.Holo.ActionBar">
<item name="android:background">@drawable/actionbar_background</item>
</style>
<style name="MyTheme" parent="@android:style/Theme.Holo.Light">
<item name="android:actionBarStyle">@style/ActionBar</item>
</style>
</resources>
Content of actionbar_background.xml
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@raw/actionbar_background"
android:tileMode="repeat" />
Instead of being repeated, the image is stretched, any idea of why android:tileMode="repeat" is not applied?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
上面的代码设置了操作栏的背景图像。
希望有帮助。
The above code sets the background image for the action bar.
Hope it helps.
好的,感谢 #android-dev IRC 频道上的 Romain Guy,这是 honeycomb / Android 3.0 上的一个已知错误,将在下一个版本中修复。从那时起,唯一的解决方案就是从代码中完成,并且它有效:-)
Ok, thanks to Romain Guy on #android-dev IRC channel, it's a known bug on honeycomb / Android 3.0 which will be fixed on the next release. Since then, the only solution is do it from code, and it works :-)
你可以轻松地做到这件事。如果您想更改操作栏背景图像,请将此代码放入 res/styles.xml 文件中。
为此,您必须从“drawable”文件夹中选择图像。这里我选择一个图像“tp_black_bg.png”
之后不要忘记将这个主题声明到你的AndroidManifest.xml文件中
现在你可以重新打开任何XML布局文件,你可以很容易地看到效果。以同样的方式,您还可以更改 ActionBar 的背景颜色。
谢谢。
You can easily do this thing. If you would like to change Action Bar background image then you place this code to your res/styles.xml file.
For this you have to select an image from "drawable" folder . Here I select an image "tp_black_bg.png"
After that don't forget to declare this theme to your AndroidManifest.xml file
Now you can reopen any XML layout file , you can easily see the effect. In the same way you can also able to change the background color of ActionBar.
Thanks.
使用 android.support.v7 中的 getSupportActionBar() 实现向后兼容性。
Use getSupportActionBar() from android.support.v7 for backward compatability.