0
我正在使用actionbarsherlok我的android項目的庫支持actionbar下面的3.0 devices.I設法改變文字顏色爲黑/藍爲特定屏幕的操作欄標題在上面的android 3.0。 對於此實現的,我發現這個這是工作在Android 3.0設置文本顏色爲android設備的sherlokactionbar的標題2.3
int titleId = getResources().getIdentifier("action_bar_title", "id",
"android");
TextView titleTv= (TextView) findViewById(titleId);
if(titleTv!= null){
titleTv.setTextColor(getResources().getColor(R.color.blue));
titleTv.setTypeface(Typeface.createFromAsset(getAssets(),
"helvetica_medium.otf"));
}
以上但是,對於具有2.3機器人設備,我正在titleTv = NULL。 有沒有解決方法? 在此先感謝。