动作监听器在android中的列表视图中不起作用

时间:2011-06-09 04:59:20

标签: android android-layout

在我的应用程序中,我从列表视图中的sdcard和图像按钮以及文本视图中列出了视频缩略图。 在列表视图中使用out图像按钮动作监听器是可行的,但我在列表视图中添加图像按钮,动作监听器((toast未显示))不起作用。

我的xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="100dp"
android:background="#ffffff">

   <ImageView
        android:src="@drawable/icon"
        android:id="@+id/Thumbnail"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true" />

<LinearLayout android:orientation="vertical"
    android:layout_toRightOf="@+id/Thumbnail" android:layout_width="200dp"
    android:layout_height="wrap_content" android:id="@+id/textLL"
    android:layout_marginLeft="10dp">

    <TextView android:layout_width="wrap_content" android:text="fffff"
        android:id="@+id/FilePath" android:layout_height="wrap_content"
        android:textStyle="bold" android:textSize="25dp"/>

    <TextView android:layout_width="wrap_content"
        android:text="dskbdskkdsvsvsvvvfff"
        android:layout_height="wrap_content" android:id="@+id/title2" />

    <LinearLayout android:orientation="horizontal"
        android:layout_gravity="center_horizontal" android:layout_width="wrap_content"
        android:layout_height="wrap_content">

        <ImageButton android:background="@drawable/play_btn"
            android:layout_width="wrap_content" android:layout_height="wrap_content"
            android:id="@+id/imageButton2" android:layout_weight="0.5" />

        <ImageButton android:background="@drawable/details_btn"
            android:layout_width="wrap_content" android:layout_height="wrap_content"
            android:id="@+id/imageButton3" android:layout_weight="0.5" />
    </LinearLayout>
</LinearLayout>
     <ImageButton android:background="@drawable/buy_btn"
           android:layout_width="wrap_content" android:layout_height="fill_parent"
           android:id="@+id/imageButton1" android:layout_toRightOf="@+id/textLL"/>

如果我从xml中移除(图像按钮)以下操作侦听器(显示的是toast)就可以了。

        <LinearLayout android:orientation="horizontal"
        android:layout_gravity="center_horizontal" android:layout_width="wrap_content"
        android:layout_height="wrap_content">

        <ImageButton android:background="@drawable/play_btn"
            android:layout_width="wrap_content" android:layout_height="wrap_content"
            android:id="@+id/imageButton2" android:layout_weight="0.5" />

        <ImageButton android:background="@drawable/details_btn"
            android:layout_width="wrap_content" android:layout_height="wrap_content"
            android:id="@+id/imageButton3" android:layout_weight="0.5" />

    </LinearLayout>
    and 
     <ImageButton android:background="@drawable/buy_btn"
           android:layout_width="wrap_content" android:layout_height="fill_parent"
           android:id="@+id/imageButton1" android:layout_toRightOf="@+id/textLL"/>

如果我在xml动作监听器中添加上面的(imageButtons)不起作用我不知道我的xml布局有什么问题。请帮我。

我的代码:

public class AndroidThumbnailList extends ListActivity{
    ..........
   public class MyThumbnaildapter extends ArrayAdapter<String>{
     public MyThumbnaildapter(Context context, int textViewResourceId,String[] objects) {
       super(context, textViewResourceId, objects);
        // TODO Auto-generated constructor stub
     }
       public View getView(int position, View convertView, ViewGroup parent) {
         .........
     } 
 }

protected void onListItemClick(ListView l, View v, int position, long id) {

    Log.e("video", "called");
    String selection = l.getItemAtPosition(position).toString();
    Toast.makeText(getBaseContext(), selection, Toast.LENGTH_SHORT).show();
}
  public void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);
      _contentUri = MEDIA_EXTERNAL_CONTENT_URI;
      initVideosId();
      setListAdapter(new MyThumbnaildapter(AndroidThumbnailList.this, R.layout.row,  _videosId));
  }

}

1 个答案:

答案 0 :(得分:1)

将android:focusable =“false”添加到ImageButton。 然后将android:descendantFocusability =“blocksDescendants”添加到ImageButton的父视图中。你的xml是LinearLayout和RelativeLayout。