我有几个 custom View
,我在其中创建了自定义样式属性,这些属性在 xml 布局中声明并在视图的构造函数期间读入。我的问题是,如果我在 xml 中定义布局时没有为所有自定义属性提供显式值,我如何使用样式和主题来获得将传递给我View
的构造函数的默认值?
例如:
attrs.xml:
<declare-styleable name="MyCustomView">
<attr name="customAttribute" format="float" />
</declare-styleable>
layout.xml(android:
为简单起见,去掉了标签):
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/com.mypackage" >
<-- Custom attribute defined, get 0.2 passed to constructor -->
<com.mypackage.MyCustomView
app:customAttribute="0.2" />
<-- Custom attribute not defined, get a default (say 0.4) passed to constructor -->
<com.mypackage.MyCustomView />
</LinearLayout>