textStyle
是一个整数值,所以下面应该有效,不应该吗?
private static final int[] ATTRS = new int[] {
android.R.attr.textSize,
android.R.attr.textColor,
android.R.attr.textStyle
};
TypedArray a = context.obtainStyledAttributes(attrs, ATTRS);
tabTextSize = a.getDimensionPixelSize(0, tabTextSize);
tabTextColor = a.getColor(1, tabTextColor);
tabTypefaceStyle = a.getInteger(2, tabTypefaceStyle);
a.recycle();
实际上,tabTypefaceStyle
始终具有默认值...
我的布局如下所示:
<com.astuetz.viewpager.extensions.PagerSlidingTabStrip
android:id="@+id/indicator"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="@color/white"
android:textSize="14sp"
android:textStyle="normal"
app:dividerColor="@color/white"
app:dividerPadding="2dp"
app:dividerPaddingBottom="8dp"
app:indicatorColor="@color/abs__holo_blue_light"
app:indicatorHeight="8dp"
app:tabPaddingLeftRight="5dip"
app:underlineColor="@color/abs__holo_blue_light" />
PS:即便失败:
TypedValue v = new TypedValue();
boolean s = a.getValue(2, v);
s
是false
....