无法解析符号' setAdapter' (微调)

时间:2016-04-17 09:58:16

标签: android android-studio spinner android-arrayadapter

我正在尝试在我的应用中实现MaterialBetterSpinner(https://github.com/Lesilva/BetterSpinner),但我得到了 "无法解决符号' setAdaptor'"错误。

这是处理材质微调器的块:

ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this,
        android.R.layout.simple_dropdown_item_1line, COUNTRIES);
MaterialBetterSpinner materialDesignSpinner = (MaterialBetterSpinner)
        findViewById(R.id.spinner);
materialDesignSpinner.setAdapter(arrayAdapter);

这是我的xml文件

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

<com.weiwangcn.betterspinner.library.material.MaterialBetterSpinner
    android:id="@+id/spinner"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:hint="@string/source"
    android:textColorHint="#05ab9a"
    app:met_floatingLabel="normal"
    android:layout_marginTop="150dp" />
<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="New Button"
    android:id="@+id/button"
    android:layout_gravity="center_horizontal"
    style="@style/Base.Widget.AppCompat.Button.Borderless"
    android:layout_marginTop="20dp" />

</LinearLayout>

1 个答案:

答案 0 :(得分:1)

解决!

我不小心在onCreate函数之外写了代码。

哈哈