您好,登錄后才能下訂單哦!
在使用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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。