2

我正在尝试使用我ImageView定义的自定义属性将图像放入我的 ,我正在这样做:

属性:

<?xml version="1.0" encoding="UTF-8"?>
<resources>
    <declare-styleable name="MyAttr">
        <attr name="my_image" format="reference"/>
    </declare-styleable>
</resources>

ImageView 属性:

app:my_image="@drawable/image"

比我的View

int imageSrc;
TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.MyAttr, 0, 0);
try {
    imageSrc = ta.getResourceId(R.styleable.MyAttr_my_image, -1);
} finally {
    ta.recycle();
}

并将图像设置为ImageView

imageView.setImageResource(imageSrc);

但什么也没有出现,我也尝试过:

imageSrcDrawable = ta.getDrawable(R.styleable.MyAttr_my_image);

和:

if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.JELLY_BEAN) {
    imageView.setBackgroundDrawable(imageSrcDrawable);
} else {
    imageView.setBackground(imageSrcDrawable);
}

更新:

我已经尝试过解析属性ta.getInt(..)并且它的工作正常!

我不明白为什么,提前谢谢!

4

2 回答 2

3

如果您包含了 Layout XML 代码,它会很有用,但是,我将在黑暗中试一试,并建议您可能对名称间距有问题。您是否将布局 XML 中的命名空间定义为

xmlns:whatever="http://schemas.android.com/apk/res/com.yourcompany.yourpackage"

如果没有,我会试一试。其他建议:

我相信obtainStyledAttributes当您在 AttributeSet 上调用它时,它实际上会解析所有属性。因此,如果 TypedArray 实例已经包含解析的资源 ID,我不会感到惊讶,简而言之:尝试使用

imageSrc = ta.getInt(R.styleable.MyAttr_my_image, -1);

ta.getResourceId(). 最后,如果以上所有方法都失败了,我会尝试使用ta.hasValue(R.styleable.MyAttr_my_image)do 确定该值是否实际存在,如果不存在,那么至少您知道obtainStyledAttributes没有成功解析和解析该属性,因此,您可以开始调查原因。如文件位置、命名空间等。

希望你让它工作。

编辑:

阅读您的评论后,我只得到了最后一个问题,从上面的片段中,我看不出您实际上是在用哪种方法初始化它,我想知道您的图像视图是否会在之后重绘。我假设这imageView.setImageResource(imageSrc);会使 imageView 无效,但是,因为它现在出现了,并且您刚刚确认 100% 确定它正确加载,那么我们可能值得手动使其无效,只是为了检查,这是imageView.invalidate();在调用后尝试image.setImageResource().

于 2016-01-17T22:22:01.720 回答
0

在此处尝试此代码

private int getResourceFromAttr(int attr)
{
    TypedValue typedValue = new TypedValue();
    Resources.Theme theme = getActivity().getTheme();
    theme.resolveAttribute(attr, typedValue, true);
    int res_ = typedValue.resourceId;
    return res_;
}

然后设置图像

    ImageView imageView = findViewById(R.id.main_logo);
    int res = getResourceFromAttr(R.attr.img_main_logo);
    imageView.setImageResource(res);
于 2021-07-14T21:22:55.320 回答