我正在使用一个Spinner
名为的自定义适配器类AlgorithmAdapter
,原则上一切正常,这意味着微调器弹出窗口出现并且所有包含的视图都正确膨胀。但是,我无法找到的是在做出选择时我如何“告诉”微调器。我当然知道setSelection()
,但这不会处理弹出窗口并将焦点返回到 Activity。
所以这里有一些相关的代码:
在我的活动中,我像这样创建我的适配器:
SpinnerAdapter spinnerAdapter = new AlgorithmAdapter(
this,
algorithmSpinner,
R.layout.algo_spinner_item_detail,
res.getStringArray(R.array.anaglyph_algorithm_titles),
res.getStringArray(R.array.anaglyph_algorithm_descriptions),
res.obtainTypedArray(R.array.anaglyph_algorithm_icons),
algorithmSpinner.getSelectedItemPosition()
);
algorithmSpinner.setAdapter(spinnerAdapter);
的构造函数AgorithmAdapter
具有以下签名:
public AlgorithmAdapter(Context context, Spinner spinner, int viewResourceId, String[] titles,
String[] descriptions, TypedArray icons, int selectedPosition) {
的getDropDownView()
方法AlgorithmAdapter
:
@Override
public View getDropDownView(final int position, View convertView, ViewGroup parent) {
if(convertView == null) {
LayoutInflater inflater = LayoutInflater.from(context);
convertView = inflater.inflate(viewResourceId, parent, false);
}
final ImageView icon = (ImageView) convertView.findViewById(R.id.algoItemIcon);
final TextView title = (TextView) convertView.findViewById(R.id.algoItemTitle);
final TextView description = (TextView) convertView.findViewById(R.id.algoItemDescription);
final RadioButton radio = (RadioButton) convertView.findViewById(R.id.algoItemRadio);
icon.setImageDrawable(icons.getDrawable(position));
title.setText(titles[position]);
description.setText(descriptions[position]);
radioGroup.add(radio);
/* it's essential to uncheck in case the positions do not match, because
* the system reuses views that could still have a checked radio button */
radio.setChecked(position == selectedPosition);
convertView.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View view) {
// uncheck every other radio button
for(RadioButton each : radioGroup)
each.setChecked(false);
// inform adapter and user that this button is selected now
radio.setChecked(true);
selectedPosition = position;
spinner.setSelection(position);
}
});
return convertView;
}
whereradioGroup
是所有下拉视图中所有 RadioButtons 的列表,以便管理当前选中的单选按钮以及必须取消选中的单选按钮。
setSelection()
除了弹出窗口没有关闭(虽然它本身正在工作)之外,这一切都很好。
我还尝试将一个附加OnItemClickListener
到 Spinner 并管理其中的选择内容,但这会引发一个异常说setOnItemClickListener cannot be used with a spinner
,这真的很烦人,因为感觉好像框架挡住了我的路,而不是在这一点上帮助我。但无论如何,这就是我必须将 Spinner 传递给适配器的原因,我很高兴我有不同的解决方案……</p>
所以我唯一缺少的是我如何“关闭”或“处置” Spinners 下拉菜单。有人可以帮我吗?这甚至是接近它的方式吗?这不会那么困难,因为为 Spinners 编写自定义适配器是一项非常基本的任务。
编辑:不知道这是否有帮助,但也许有人在我的下拉视图项的布局文件中发现错误。algo_spinner_item_detail.xml
:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="10dp"
android:background="@android:drawable/list_selector_background" >
<ImageView
android:id="@+id/algoItemIcon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:contentDescription="@string/algoIconDescription"
android:layout_marginRight="8dp" />
<RadioButton
android:id="@+id/algoItemRadio"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:layout_marginLeft="10dp"
android:layout_centerVertical="false" />
<TextView
android:id="@+id/algoItemTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/algoItemIcon"
android:layout_alignTop="@id/algoItemIcon"
android:textStyle="bold"
android:layout_marginBottom="1dp" />
<TextView
android:id="@+id/algoItemDescription"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/algoItemTitle"
android:layout_alignLeft="@id/algoItemTitle"
android:layout_toLeftOf="@id/algoItemRadio" />
</RelativeLayout>
选择一个项目后,你到底是如何关闭/处理 f***ing Spinner 下拉菜单的?