我正在开发一个 Android 应用程序,我决定我真的很喜欢 YouTube 应用程序、Google I/O 2012 应用程序和 Play 商店的 ActionBar 风格。它有一个带有重复对角线的灰色背景。 这是它的图片。 有谁知道如何做到这一点?我知道如何制作不同的颜色,但我不知道如何设计这样的样式。
问问题
5256 次
3 回答
4
将此模式设置为 ActionBar 的背景:
getActionBar().actionBar.setBackgroundDrawable(getResources().getDrawable(R.drawable.pattern_dark_xml));
你的 pattern_dark_xml:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<bitmap
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/pattern_dark"
android:tileMode="repeat" />
</layer-list>
这是一个模式的例子:
于 2012-09-13T15:03:29.400 回答
2
于 2012-09-13T15:03:53.457 回答
0
ActionBar actionBar = getActionBar();
actionBar.setBackgroundDrawable(R.drawable.action_bar_bg));
于 2012-09-13T15:03:20.547 回答