我知道创建自定义 UI 元素(通过 View 或特定的 UI 元素扩展)是可能的。但是,是否有可能为新创建的 UI 元素定义新的属性或属性(我的意思是不是继承,而是全新的,以定义一些我无法用默认属性或属性处理的特定行为)
元素我的自定义元素:
<com.tryout.myCustomElement
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Element..."
android:myCustomValue=<someValue>
/>
那么,有可能定义 MyCustomValue吗?
Thx