我在Android上使用[TextView TextView ImageButton]进行列表视图。我使用ArrayAdapter实现列表视图。根据我的要求,我需要单个和长按事件列表视图,以便我使用 registerForContextMenu(getListView())进行长按,单按我使用 onListItemClick 。 这个工作正常。之后我还需要在列表视图上为imageButton设置onClick事件,并为imageButton实现onclick。
现在我的问题是单个按下事件,长按事件在listView.But上为imageButton实现onClick侦听器后无效。图像按钮onClick侦听器工作正常。
我将属性 android:focusable =“false”添加到imageButton,但对我没用。
如何使用onBlick侦听器为ImageButton获取单次和长按事件?请帮助我。
group.xml:
......
<ListView
android:id="@id/android:list"
android:focusable="true"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>
.....
group_row.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
......
android:focusable="false" />
<ImageButton
android:id="@+id/group_row_gadd"
.....
android:focusable="false"
android:background="@drawable/add" />
<TextView
android:id="@+id/group_row_grow"
....
android:focusable="false" />
</RelativeLayout>
我的arrayadapter类:
public class GroupAdapter extends ArrayAdapter<String> implements OnClickListener{
....
@Override
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View rowView = inflater.inflate(R.layout.group_row, parent, false);
name = (TextView) rowView.findViewById(R.id.group_row_gname);
number = (TextView) rowView.findViewById(R.id.group_row_grow);
add = (ImageButton) rowView.findViewById(R.id.group_row_gadd);
add.setTag(position);
add.setOnClickListener(this);
return rowView;
}
public void onClick(View v) {
Log.e("onclick", "onclick");
Integer position = (Integer) v.getTag();
switch (v.getId()) {
case R.id.group_row_gadd:
break;
}
}
}
mainclass:
public class Group extends ListActivity{
.....
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.group);
registerForContextMenu(getListView());
.....
}// OnCreate End
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
.....
}
@Override
public void onCreateContextMenu(ContextMenu menu, View v,ContextMenuInfo menuInfo) {
super.onCreateContextMenu(menu, v, menuInfo);
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.group_edit_remove, menu);
}
@Override
public boolean onContextItemSelected(MenuItem item) {
AdapterContextMenuInfo info = (AdapterContextMenuInfo) item.getMenuInfo();
.....
return false;
}
}
答案 0 :(得分:0)
我猜您还需要将android:focusableInTouchMode="false"
设置为 group_row.xml
答案 1 :(得分:0)
因为ImageButton无法获得焦点。在ListView上设置OnItemClickListener,ListView项将成为获得焦点的第一优先级。因此,当您单击ImageButton时,它将无法工作。您可以修改GroupAdapter。