1
<style name="mystyle" parent="@*android:style/Widget.Holo.NumberPicker">
</style>

当我以我的风格使用它时,系统报告错误“非法资源引用:@*android 资源是私有的,并不总是存在”,这是什么问题

4

2 回答 2

0

简单地说:这是不可能的。号码选择器没有公共样式。您可以通过简单搜索“style numberpicker”来找到这个 SO 问题/答案:Unable to override style switchStyle and NumberPicker in Android

于 2013-03-12T14:29:24.263 回答
0

遵循此代码:

if (value.startsWith("@*android:")) { //$NON-NLS-1$
    context.report(ISSUE, attribute, context.getLocation(attribute),
            "Illegal resource reference: @*android resources are private and " +
            "not always present", null);
}

从您的节点中提取的字符串以@*android

那可能是你的问题

于 2013-03-12T09:47:09.097 回答