作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想要一个带有提示的下拉微调器,但我在配置它时遇到了问题。现在我设法通过覆盖我的适配器中的 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>
最佳答案
您需要声明您的微调器高度
<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/
我是一名优秀的程序员,十分优秀!