我需要更改标签标题的颜色和/或阴影。 我尝试过但不起作用:
public void iluminarTab(String target) {
ActionBar.Tab tab = actionBar.getTabAt(getTabPositionByTitle(target));
SpannableString ss = new SpannableString(tab.getText().toString());
ss.setSpan(
new ShadowSpan(4, 0, 0, getResources().getColor(
R.color.irc_color_13_pink)), 0, ss.length(),
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
tab.setText(ss);
}
private Integer getTabPositionByTitle(String title) {
for (int i = 0; i < actionBar.getTabCount(); i++) {
if (actionBar.getTabAt(i).getText().toString()
.equalsIgnoreCase(title)) {
return i;
}
}
return null;
}
// NOTE: a separated class, posting here just to explain.
// this works on other spannables
public class ShadowSpan extends CharacterStyle {
public float Dx;
public float Dy;
public float Radius;
public int Color;
public ShadowSpan(int radius, int dx, int dy, int color) {
Radius = radius;
Dx = dx;
Dy = dy;
Color = color;
}
@Override
public void updateDrawState(TextPaint tp) {
tp.setShadowLayer(Radius, Dx, Dy, Color);
}
}
如果我可以设置textview属性,它也会帮助我。 有什么想法可以帮助我吗? 提前谢谢。
答案 0 :(得分:1)
您可以使用getCustomView()
获取标签的视图,然后点击setBackgroundResource()
。
public void onTabSelected(Tab tab, FragmentTransaction ft) {
RelativeLayout tabLayout = (RelativeLayout) tab.getCustomView(); //get the view for the tab
tabLayout.setBackgroundResource(R.id.desired_background_with_indicator); // change the background
tab.setCustomView(tabLayout); // assign back to the tab
}
虽然我使用了onTabSelected
,但在您的情况下,您的方法中已经有ActionBar.Tab
的引用,请以相同的方式使用tab
对象。
您可以使用ColorDrawable
作为背景或任何最适合的人。