0

我正在尝试将微调器加载到我的布局中并不断收到此错误:

找不到以下类: - Spinner(更改为 android.widget.Spinner、修复构建路径、编辑 XML)

这是我的xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <Spinner
        android:id="@+id/spn_dates"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:onClick="displayDatesToSpiner" />

    <ListView
        android:id="@+id/LST_bought_products"
        android:layout_width="match_parent"
        android:layout_height="302dp" >
    </ListView>

</LinearLayout>

谢谢

4

2 回答 2

0

当您在 android 清单中重命名标准 AppTheme 时,有时会发生这种情况。它会很好地构建和部署,但 xml 设计编辑器不会呈现它。

于 2015-12-09T10:51:25.260 回答
-1

这通常是因为某处存在无效属性。删除onClick,它将起作用。

于 2013-08-25T04:21:45.743 回答