我想創建一個自定義組件,繼承 RelativeLayout。
在我的 xml 布局文件中是這樣設置的:
<Mycomponent
android:src="@drawable/my_test_image">
<TestView>
</Mycomponent>
如何在 Mycomponent 的 constructor 裡創建一個 Drawable 類?
我想查看 ImageView 的源代碼,但是似乎是 android 的內部代碼。
在我的代碼中如何實現呢?
你要定義過一個自己的屬性(例:img),再用下面的方法得到
TypedArray a = context.obtainStyledAttributes(attrs,
R.styleable.ButtonPreference, defStyle, 0);
//button的名稱
Drawable drawable = a.getDrawable(R.styleable.MyComponent_img);
a.recycle();