自定义ListView里面条目有CheckBox 监听ListView遇到的问题

如果item.xml里面有CheckBox,listView的


listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {


@Override
public void onItemClick(AdapterView arg0, View view, int position,
long arg3) {
Log.e("jasldfjlasjdf", position+"===========");

// CheckBox checkBox = (CheckBox) view.findViewById(R.id.selected);
TextView tv_name = (TextView) view.findViewById(R.id.name);

TextView tv_content = (TextView) view.findViewById(R.id.content);

TextView tv_time = (TextView) view.findViewById(R.id.time);

// Log.e(TAG, "checkBox ===="+checkBox.isChecked());
Log.e("jasldfjlasjdf", tv_name.getText().toString());
Log.e("jasldfjlasjdf", tv_content.getText().toString());
Log.e("jasldfjlasjdf", tv_time.getText().toString());
}
});


方法可能不起作用,原因:




    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >


            android:id="@+id/name"
        android:textColor="#ff3399ff"
        android:textSize="50px"
        android:textStyle="bold"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        />
    
            android:id="@+id/content"
        android:textStyle="bold"
        android:textSize="40px"
        android:layout_marginTop="8px"
        android:textColor="@android:color/white"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
    />
    
          android:id="@+id/time"
        android:gravity="right|center"
        android:textSize="30px"
        android:layout_marginTop="8px"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
 />
  
 
       android:id="@+id/selected"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:checked="false"
     
     android:clickable="false"
     android:focusable="false"
     android:focusableInTouchMode="false"
     />

你可能感兴趣的:(java)