我有一个库,它创建一个 customViewGroup 并用它们做一些花哨的事情,默认情况下,你可以在 XML 中使用这个 VIEWGROUP 并像这样添加任何你想要的孩子。
<CustomFancyViewGroup
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:cusattr="15dp"/>
<CustomFancyViewGroup/>
这工作正常,除非你想以编程方式添加一个孩子。
我无论如何都找不到以编程方式将“cusattr”设置为视图。
那么有没有办法以编程方式将自定义属性添加到视图中?