在使用ImageView时,可以通过自定义属性来设置其特定的属性值,例如:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="CustomImageView">
<attr name="customImage" format="reference" />
</declare-styleable>
</resources>
<com.example.CustomImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:customImage="@drawable/image1" />
public class CustomImageView extends AppCompatImageView {
public CustomImageView(Context context, AttributeSet attrs) {
super(context, attrs);
TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.CustomImageView);
Drawable customImage = a.getDrawable(R.styleable.CustomImageView_customImage);
if (customImage != null) {
setImageDrawable(customImage);
}
a.recycle();
}
}
通过以上步骤,就可以在自定义的ImageView中使用自定义属性来设置特定的属性值。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。