0
我有N
「書」每個都有一些章節。所以我創建了一個ListView
。 ListView
中的每個項目都有兩部分:名稱爲TextView
,列出章節的部分爲Spinner
。Android:列表視圖中的微調框,OnClick/OnItemClick/OnItemSelected事件在哪裏?
我已經爲ListView
- BookAdapt
創建了自定義適配器,併爲Spinner
-ChapAdapt
創建了自定義適配器。我有它顯示和工作,但我無法找到如何添加點擊/選定的事件。
這裏是清單資源
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Load Chapter" />
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<Button
android:text="Load"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<Button
android:text="Cancel"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
</LinearLayout>
<ListView
android:id="@+id/chapview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
這裏的每一本書顯示
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:id="@+id/viewbook"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<Spinner
android:id="@+id/chapspinner"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:prompt="@string/chapter_prompt"
android:layout_weight="1"/>
下面是從BookAdapt
class BookAdapt extends ArrayAdapter {
BookAdapt(Context context, int txtres, BookHolder[] bks) {
super(context, txtres);
mContext = context;
books = bks;
mInflater = LayoutInflater.from(context);
}
public View getView(int pos, View convert, ViewGroup parent) {
BookHolder book = books[ pos];
String bkname = book.getName();
if (convert == null) {
convert = mInflater.inflate(R.layout.bookview, null);
book.text = (TextView) convert.findViewById(R.id.viewbook);
Spinner sp = (Spinner)convert.findViewById(R.id.chapspinner);
ChapAdapt ch = new ChapAdapt(book, mContext);
sp.setAdapter(ch);
//convert.setClickable(true);
convert.setTag(book);
} else {
book = (BookHolder)convert.getTag();
}
book.text.setText(bkname);
return convert;
}
ChapAdapt
只是分配一個TexTView
。