0
有可能使用自定義圖像更改操作欄背景?操作欄背景
有可能使用自定義圖像更改操作欄背景?操作欄背景
我試試這個代碼&工作的權利:
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);