set androids action bar title color

int titleId;
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
                titleId = getResources().getIdentifier("action_bar_title", "id", "android");
            } else {
                titleId = com.actionbarsherlock.R.id.abs__action_bar_title;
            }
            TextView abTitle = (TextView) findViewById(titleId);
            if (null != abTitle) {
                abTitle.setTextColor(getResources().getColor(R.color.item_title_text));
            }

你可能感兴趣的:(android)