我有 2 个模块:
app
- layout.xml -styles.xml
-
attrs.xml
核心
- CustomComponent.java
在模块核心中有一个自定义组件,称为 CustomComponent,我在应用程序模块中使用它,并且我想在其中设置自定义样式,如下所示
布局.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:customNS="http://schemas.android.com/apk/res-auto"
...
<com.example.CustomComponent
android:id="@+id/chart"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
customNS:chart_style="@style/MyCustomStyle"/>
</LinearLayout
样式.xml
<style name="MyCustomStyle">
<item name="android:textColor">#efefef</item>
<item name="android:background">#ffffff</item>
<item name="android:text">This is my text</item>
</style>
attrs.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="MyCustomStyle">
<attr name="chart_style" format="reference"/>
</declare-styleable>
</resources>
自定义组件.java
public CustomComponent(Context context, AttributeSet attrs) {
super(context, attrs);
init(context);
TypedArray ta = context.obtainStyledAttributes(attrs, new int[] {R.attr.chart_style});
int[] attrss = {android.R.attr.textColor, android.R.attr.background, android.R.attr.text};
**?????**
}
我想达到以下结果:
在 CustomComponent 中设置样式
customNS:chart_style="@style/MyCustomStyle"
后
,我想找到这种样式,对其进行解析并获取所有需要的值。
但我找不到为此工作的代码。
您能否建议如何达到这样的结果?