如何使以下样式为android操作栏重复图像x和y。
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="android:actionBarStyle">@style/ActionBarStyle</item>
</style>
<style name="ActionBarStyle" parent="android:style/Widget.Holo.Light.ActionBar.Solid.Inverse">
<item name="android:background" >@drawable/action_bar_bg</item>
</style>
答案 0 :(得分:2)
在drawable文件夹下,添加my_background.png文件,该文件代表要重复的图像。
仍在drawable文件夹下,创建一个包含以下内容的action_bar_bg.xml:
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/my_background"
android:tileMode="repeat" />
记住android:tileMode="repeat"
声明。这将指示android重复图像。
打开styles.xml或用于设置样式的任何内容,并根据上面的位图配置背景图像:
<style name="ActionBarStyle" parent="android:style/Widget.Holo.Light.ActionBar.Solid.Inverse">
<item name="android:background">@drawable/action_bar_bg</item>
</style>
我注意到Android在根据您使用的API级别重新定位Actionbar时会遇到一些问题。在这种情况下,使用较新的API可以更好地避免麻烦和自定义/黑客攻击。因此,您需要对目标API,样式,绘图,布局,颜色和主题进行双重检查,以便确定它们是否全部链接和设置。
声明位图后,可以通过编程方式轻松设置可重复的背景:
//highlight visited item using image declared in 'bitmap' tag
if (Build.VERSION.SDK_INT >= 16)
view.setBackground(
getResources().getDrawable(R.drawable.action_bar_bg)
);
else
view.setBackgroundDrawable(
getResources().getDrawable(R.drawable.another_action_bar_bg)
);
如果您想探索更多背景编码,我建议您使用BitmapDrawable.setTileModeXY
方法
Bitmap bmp = BitmapFactory.decodeResource(getResources(),
R.drawable.action_bar_bg);
BitmapDrawable bdw = new BitmapDrawable(bmp);
bdw.setTileModeXY(Shader.TileMode.REPEAT,
Shader.TileMode.REPEAT);
yourView.setBackgroundDrawable(bdw);
我希望这对你和其他人有所帮助!