1

当我尝试在我的布局中为 LinearLayout 导入样式时,我总是收到来自 Eclipse 的错误警报“找不到与给定名称匹配的资源......”。我导入样式属性“?attr/spinnerDropDownItemStyle”的方式有问题吗?等待线索!

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
style="?attr/spinnerDropDownItemStyle"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
</LinearLayout>
4

2 回答 2

5

你想使用 android 的spinnerDropDownItemStyle. 就这样用吧。。

style="?android:attr/spinnerDropDownItemStyle"
于 2013-11-04T08:24:55.353 回答
0

我在找不到我的 ?attr/ 属性时遇到问题。问题是,就 attr 名称而言,黑暗/夜晚和白天/光明主题可能不匹配。这解决了我奇怪的问题。

于 2021-10-01T18:29:04.310 回答