gpt4 book ai didi

android - 在下拉微调器上使用自定义项填充 arrayadapter

转载 作者:行者123 更新时间:2023-11-29 15:39:44 24 4
gpt4 key购买 nike

我想要一个带有提示的下拉微调器,但我在配置它时遇到了问题。现在我设法通过覆盖我的适配器中的 getItem 来显示提示,但由于某种原因它忽略了填充。

        category = (Spinner) view.findViewById(R.id.category);


List<String> categoryList = Arrays.asList(getResources().getStringArray(R.array.categories));
categoryAdapter = new ArrayAdapter<String>(getContext(), R.layout.spinner_item, categoryList){


@Override
public int getCount() {
if (!firsttime) {
firsttime = true;
return super.getCount(); // you dont display last item. It is used as hint.
}
return super.getCount()-1;
}

};
categoryAdapter.setDropDownViewResource(R.layout.spinner_item);

category.setAdapter(categoryAdapter);

category.setSelection(categoryAdapter.getCount());

xml 中的微调器:

<Spinner
style="@style/Widget.AppCompat.DropDownItem.Spinner"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/category"
android:spinnerMode="dropdown"
android:paddingBottom="5sp"
android:paddingTop="5sp"
android:paddingStart="15sp"
android:paddingEnd="15sp"
android:backgroundTint="@color/text_selected" />

spinner_item.xml

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="20sp"
android:textColor="@color/text_selected"
android:padding="5sp"
/>

字符串数组:

 <string-array name="categories">

<item>For Sale</item>
<item>Services</item>
<item>Vehicles</item>
<item>Property</item>
<item>Category</item>
</string-array>

在我选择任何东西之前,它看起来像这样(没有填充): enter image description here

当我选择一些东西时: enter image description here

最佳答案

您需要声明您的微调器高度

<Spinner
style="@style/Widget.AppCompat.DropDownItem.Spinner"
android:layout_width="match_parent"
android:layout_height="40dp" //like this
android:id="@+id/category"
android:spinnerMode="dropdown"
android:paddingBottom="5sp"
android:paddingTop="5sp"
android:paddingStart="15sp"
android:paddingEnd="15sp"
android:backgroundTint="@color/text_selected" />

关于android - 在下拉微调器上使用自定义项填充 arrayadapter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42738265/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com