我看到一个我以前从未见过的错误,它阻止我的一些布局文件在Android Studio中呈现。图形布局编辑器中显示的错误是:“Resource id 0x1010081 is not of type STYLE (instead attr)
”。我正在使用Android API 17。
我试图从
改变 android:spinnerMode="dropdown"
到
android:spinnerStyle="@android:style/Widget.Spinner.DropDown"
但它不起作用
Android layout error: "Resource id <res_id> is not of type STYLE (instead attr)"
答案 0 :(得分:0)
对我来说,这段代码正在运行style="@android:style/Theme"
,例如:
<Spinner
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/spChooseName"
style="@android:style/Theme"
/>