gpt4 book ai didi

android - 库的样式属性没有值,即使它们已明确设置

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:24:27 26 4
gpt4 key购买 nike

我制作了一个带有自定义 View 的库,该 View 在创建时会扩充布局。布局中的 View 使用 style="?attr/labelStyle" 或任何其他属性设置样式。

该属性在库的 attrs.xml 中声明:

<attr name="myViewStyle" format="reference"/>

<declare-styleable name="MyView">
<attr name="labelStyle" format="reference|color"/>
</declare-styleable>

我已经在库的 styles.xml 中为此属性设置了默认值:

<style name="MyViewStyle">
<item name="labelStyle">@style/LabelStyle</item>
</style>

<style name="LabelStyle">
<item name="android:textColor">?android:attr/textColorPrimary</item>
<item name="...">...</item>
</style>

最后在库的 themes.xml 中:

<style name="MyViewStyleLight" parent="Theme.AppCompat.Light">
<item name="myViewStyle">@style/MyViewStyle</item>
</style>

现在这是库的默认样式,但它在主项目 styles.xml 中被覆盖了

<style name="AppTheme" parent="Theme.AppCompat.Light">
<item name="myViewStyle">@style/MyViewStyleCustom</item>
</style>

<style name="MyViewStyleCustom" parent="MyViewStyleLight">
<item name="android:textColor">@color/gray</item>
<item name="...">...</item>
</style>

自定义 View 代码:

public MyView(Context context) {
this(context, null, R.attr.myViewStyle, 0);
}

public MyView(Context context, @Nullable AttributeSet attrs) {
this(context, attrs, R.attr.myViewStyle, 0);
}

public MyView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
this(context, attrs, defStyleAttr, 0);
}

public MyView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
super(createThemeWrapper(context, R.attr.myViewStyle, R.style.MyViewStyleLight),
attrs, defStyleAttr, defStyleRes);
initLayout();
}

private static Context createThemeWrapper(Context context, int styleAttr, int defaultStyle) {
final TypedArray ta = context.obtainStyledAttributes(new int[]{styleAttr});
int style = ta.getResourceId(0, defaultStyle);
ta.recycle();
return new ContextThemeWrapper(context, style);
}

private void initLayout() {
LayoutInflater inflater = LayoutInflater.from(getContext());
inflater.inflate(R.layout.my_view, this);
...
}

我在下面解释了 ContextThemeWrapper。现在应用程序在布局膨胀的那一行崩溃了。这是崩溃日志的重要部分:

android.view.InflateException: Binary XML file line #0: Binary XML file line #0: Error inflating class com.example.MyView
at android.view.LayoutInflater.inflate(LayoutInflater.java:539)
at android.view.LayoutInflater.inflate(LayoutInflater.java:423)
[...]
Caused by: java.lang.UnsupportedOperationException: Failed to resolve attribute at index 13: TypedValue{t=0x2/d=0x7f030057 a=-1}
at android.content.res.TypedArray.getDrawable(TypedArray.java:867)
[...]

布局充气器无法找到属性的值。当我试图通过代码获取属性时,它什么也不返回。该属性实际上存在,只是它没有设置值,即使我已经明确设置了一个值。

我应该如何设计我的库的样式?我几乎可以肯定我所做的每件事都与 SublimePicker library 相同但它就是行不通。与 ContextThemeWrapper 的部分略有不同,但这可能不是问题所在。我觉得我忘记了某个地方的一个小东西,它使属性没有值(value),有些东西没有连接,我不知道。

我知道这是一个很长的问题,但是再简洁不过了,我尽可能地简化了一切。我更改了以前版本问题中的大部分信息,使其完全不同。这两个答案现在根本不相关,过去也不相关。赏金自动奖励。

如果这对某人有帮助,我可以将下载添加到我的实际项目中,但正如我所说,这个简化示例与我的项目具有完全相同的形式。

最佳答案

这个答案是基于我从你的问题和你与 Vinayak B 之间的对话中了解到的。如果我有误解,请纠正我。

应用程序和库中的 style.xml 存在差异。此外,我已经删除了 theme.xml 以及默认样式的 MyView.java 构造函数中的更改

我改变了以下事情

  • 在主项目styles.xml中覆盖

    <style name="AppTheme" parent="Theme.AppCompat.Light">
    <item name="myViewStyle">@style/MyViewStyleCustom</item>
    </style>

    <style name="MyViewStyleCustom" parent="MyViewStyle">
    <item name="labelStyle">@style/LabelStyle123</item>
    </style>

    <style name="LabelStyle123">
    <item name="android:textColor">#f00</item>
    </style>
  • 库样式.xml

    <resources>
    <style name="MyViewStyle">
    <item name="labelStyle">@style/LabelStyle</item>
    <item name="TextStyle">@style/textStyle</item>
    </style>

    <style name="LabelStyle">
    <item name="android:textColor">#00f</item>
    </style>

    <style name="textStyle">
    <item name="android:textColor">#009</item>
    </style>
    </resources>
  • MyView.java - 如果应用程序没有任何属性,则更改构造函数并设置默认 MyViewStyle。

    public MyView(Context context) {
    this(context, null, R.attr.myViewStyle, R.style.MyViewStyle);
    }

    public MyView(Context context, @Nullable AttributeSet attrs) {
    this(context, attrs, R.attr.myViewStyle, R.style.MyViewStyle);
    }

    public MyView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
    this(context, attrs, defStyleAttr, R.style.MyViewStyle);
    }

    public MyView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
    super(createThemeWrapper(context, defStyleAttr,defStyleRes), attrs, defStyleAttr, defStyleRes);
    initLayout();
    }

    private static Context createThemeWrapper(Context context, int styleAttr, int defaultStyle) {
    final TypedArray ta = context.obtainStyledAttributes(new int[]{styleAttr});
    int style1 = ta.getResourceId(0, defaultStyle);
    ta.recycle();
    return new ContextThemeWrapper(context, style1);
    }

因此,如果它没有在主要 Activity 样式中被覆盖或被覆盖的 labelStyle,它将采用默认的 labelStyle

关于android - 库的样式属性没有值,即使它们已明确设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47492342/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com