gpt4 book ai didi

android - 如何使用选择器为 ImageView 着色?

转载 作者:IT老高 更新时间:2023-10-28 22:00:34 24 4
gpt4 key购买 nike

我想使用 XML 为我的 tabhost 的图标着色,而不是通过编程方式进行(反正我无法做到)...

我在 SO: Android imageview change tint to simulate button click 上找到了这个帖子

这似乎是一个很好的解决方案,但我无法在我的项目中正确调整它...我做了以下更改:

public class TintableImageView extends ImageView {
private ColorStateList tint;

public TintableImageView(Context context) {
super(context);
}

//this is the constructor that causes the exception
public TintableImageView(Context context, AttributeSet attrs) {
super(context, attrs);
init(context, attrs, 0);
}

public TintableImageView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init(context, attrs, defStyle);
}

//here, obtainStyledAttributes was asking for an array
private void init(Context context, AttributeSet attrs, int defStyle) {
TypedArray a = context.obtainStyledAttributes(attrs, new int[]{R.styleable.TintableImageView_tint}, defStyle, 0);
tint = a.getColorStateList(R.styleable.TintableImageView_tint);
a.recycle();
}

@Override
protected void drawableStateChanged() {
super.drawableStateChanged();
if (tint != null && tint.isStateful())
updateTintColor();
}

public void setColorFilter(ColorStateList tint) {
this.tint = tint;
super.setColorFilter(tint.getColorForState(getDrawableState(), 0));
}

private void updateTintColor() {
int color = tint.getColorForState(getDrawableState(), 0);
setColorFilter(color);
}

}

我也无法引用 @drawable/selector.xmlandroid:tint ,所以我在 colors.xml 中做了这个:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="azulPadrao">#2e7cb4</color>
<drawable name="tab_icon_selector">@drawable/tab_icon_selector</drawable>
</resources>

我的选择器:

<?xml version="1.0" encoding="utf-8"?>

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_selected="true" android:tint="#007AFF" />
<item android:state_focused="true" android:tint="#007AFF" />
<item android:state_pressed="true" android:tint="#007AFF" />
<item android:tint="#929292" />
</selector>

我的标签布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:id="@+id/TabLayout"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:gravity="center" android:background="@drawable/tab_bg_selector">

<com.myapp.TintableImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageView" android:layout_gravity="center" android:tint="@drawable/tab_icon_selector"/>
<TextView android:id="@+id/TabTextView" android:text="Text"
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:textColor="@drawable/tab_text_selector"
android:textSize="10dip"
android:textStyle="bold" android:layout_marginTop="2dip"/>

</LinearLayout>

有什么建议吗?提前致谢

编辑

我收到了 NumberFormatException使用 android:tint , 当正确的是 app:tint (设置后 xmlns:app="http://schemas.android.com/apk/res/com.myapp" )......但现在我认为我以错误的方式使用我的选择器,因为无论状态如何,图标都是黑色的......我试过设置<drawable name="tab_icon_selector">@drawable/tab_icon_selector</drawable>从colors.xml中,没有工作

最佳答案

如果您使用的是 API 21+,您可以使用选择器和 tint 在 XML 中轻松完成此操作。 :

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_activated="true">
<bitmap android:src="@drawable/ic_settings_grey"
android:tint="@color/primary" />
</item>

<item android:drawable="@drawable/ic_settings_grey"/>
</selector>

关于android - 如何使用选择器为 ImageView 着色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19500039/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com