2011-01-29 57 views
0

我有N「書」每個都有一些章節。所以我創建了一個ListViewListView中的每個項目都有兩部分:名稱爲TextView,列出章節的部分爲SpinnerAndroid:列表視圖中的微調框,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

回答

0

微調器本身實現OnClicklistener,以便它彈出並允許您選擇相應的項目。選擇Spinner.onClick()應該由系統調用,所以我認爲這是你正在尋找的地方。

你想要做的事聽起來很像我的一個ExpandableListView的用例 - 也許這也許很有趣。