动作栏背景

时间:2014-01-23 13:33:55

标签: android android-actionbar

是否可以使用自定义图像更改操作栏背景?

2 个答案:

答案 0 :(得分:2)

答案 1 :(得分:1)

我试试这个代码&工作正确:

BitmapDrawable bg =(BitmapDrawable)getResources().getDrawable(R.drawable.ic_launcher); // get the image as bitmap drawable
bg.setTileModeXY(TileMode.REPEAT, TileMode.CLAMP); // set the TileMode.
getActionBar().setBackgroundDrawable(bg);