我正在尝试将微调器加载到我的布局并继续发生此错误:
找不到以下类: - 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>
由于
答案 0 :(得分:0)
当您在Android清单中重命名标准AppTheme时,有时会发生这种情况。它将构建和部署得很好,但xml设计编辑器不会渲染它。
答案 1 :(得分:-1)
这通常是因为某处存在无效属性。 删除onClick,它将工作。