我试图制作一个棘手的布局,我需要Android的默认标签指示颜色。
我搜索了很多,但我找到了如何更改和自定义标签指示器,但无法找到如何获取默认标签指示器的十六进制颜色代码。
答案 0 :(得分:1)
我为你的问题做了一些研究,希望这对你有所帮助。
选项卡指示器颜色在类TabLayout (Code)的内部类SlidingTabStrip
中设置。可悲的是,你无法访问这个变量。
private class SlidingTabStrip extends LinearLayout {
private final Paint mSelectedIndicatorPaint;
// ...
void setSelectedIndicatorColor(int color) {
if (mSelectedIndicatorPaint.getColor() != color) {
mSelectedIndicatorPaint.setColor(color);
ViewCompat.postInvalidateOnAnimation(this);
}
}
}
但是在TabLayout
的构造函数中,设置了默认选项卡指示器颜色。
public TabLayout(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
// Add the TabStrip
mTabStrip = new SlidingTabStrip(context);
addView(mTabStrip, LayoutParams.WRAP_CONTENT, LayoutParams.MATCH_PARENT);
TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.TabLayout, defStyleAttr, R.style.Widget_Design_TabLayout);
// <-- HERE
mTabStrip.setSelectedIndicatorColor(a.getColor(R.styleable.TabLayout_tabIndicatorColor, 0));
}
我认为您需要访问R.styleable.TabLayout_tabIndicatorColor才能获得所需内容。我现在没有可能测试它是否以及如何工作但我希望这对你有所帮助。
<强>更新强>
我在家里试过这个,似乎有效。我在我的活动的onCreate()
方法
TypedArray a = getContext().obtainStyledAttributes(null, R.styleable.TabLayout, 0, R.style.Widget_Design_TabLayout);
// returns -16738680 in my case which is the accentColor
int color = a.getColor(R.styleable.TabLayout_tabIndicatorColor, 0);
但我看到,R.styleable.TabLayout_tabIndicatorColor
只是accentColor
的链接。也许这是获得你想要的更好的方式。
<style name="Base.Widget.Design.TabLayout" parent="android:Widget">
<item name="tabIndicatorColor">?attr/colorAccent</item>
<!-- other items -->
</style>