我想設置梯度我的應用程序標題欄(從#F55B53
到#FFFF00
)上設置的標題欄梯度,這個下面的代碼:在Android應用程序
GradientDrawable gd = new GradientDrawable(GradientDrawable.Orientation.TOP_BOTTOM, new int[] {0xF55B53,0xFFFF00});
View title = getWindow().findViewById(android.R.id.title);
View titleBar = (View) title.getParent();
titleBar.setBackgroundDrawable(gd);
但是Eclipse告訴我:
從類型視圖的方法setBackgroundDrawable(繪製對象)是 棄用
我應該做?
? – Macarse 2013-02-24 12:13:00
主標題欄,默認情況下放置在屏幕頂部的標題,當您創建項目時 – user1997317 2013-02-24 12:15:41
如果您要創建新應用程序,並且您想使用操作欄,那麼標題欄是舊的。檢查ActionBarSherlock:http://actionbarsherlock.com/ – Macarse 2013-02-24 12:18:00