我怎樣才能改變在Android應用程序標題欄的顏色?
我想:
this.setTitleColor(Color.BLUE);
,但它沒有標題欄的顏色改變的書面文字的顏色。
我怎樣才能改變在Android應用程序標題欄的顏色?
我想:
this.setTitleColor(Color.BLUE);
,但它沒有標題欄的顏色改變的書面文字的顏色。
getWindow()語境方法返回當前視圖上下文,用於得到一個活動的標題欄,android.id.id.title
View title = getWindow().findViewById(android.R.id.title);
View titleBar = (View) title.getParent();
titleBar.setBackgroundColor(Color.RED);`
是的,肯定。請投票結束。 – 2011-05-13 09:10:09