关于ListView点击无效,item无法相应点击事件的问题,网上有很多, 大致可分为俩种情况, 一种是 item中存在 ImageButton 等可以点击的组件,这会抢先获得ListView的焦点. 从而导致item点击失效......等等网上好多,不过今天我记录的是另一种情况, 就是ListView中只有TextView 其他什么都没有 ,还失效的情况, 用网上的两种常见的方法,都无济于事.
经过几番的测试, 发现是在适配器的getView中处理TextView的时候,调用了适配器的notifyDataSetChanged. 在notifyDataSetChanged之后导致item失去焦点.
之前,碰到过类似的问题, 就是由于在对话框中调用了适配器更新方法notifyDataSetChanged导致Activity失去焦点,影响屏蔽物理返回键的效果. 至于这个notifyDataSetChanged更新以后,哪个组件获得了焦点.还没有研究.先记录下,研究以后在补充这文章.
下面是摘自网络的相关点击item失效问题的解决方法.仅供参考.
最近有人问我,在Android里:
在自定义listView里面有按钮,然后setItemClickListener时不响应,网上很多关于这个的,但我都试过,貌似都解决不了。
其实刚开始学Android接触ListView时我也遇到此问题,在网上到处搜也难以找到相关解决方案,原因之一是网上原创文章少,转载居多,很多文章都雷同;原因之二在于自己英语不好,不敢上外文论坛去找。
后来经过自己的慢慢摸索终于解决了这个问题。
当朋友问我时,我一番简单讲解加几张代码截图就给他解决问题啦~
废话不多说,先上源代码:源代码
代码片段:
main.xml
[html] view plaincopyprint?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<ListView
android:id="@+id/lv_list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_below="@+id/numxback"
android:cacheColorHint="#00000000"
android:drawSelectorOnTop="false"
android:fadingEdge="none"
android:fastScrollEnabled="true"
android:focusable="false"
android:divider="@null"
android:focusableInTouchMode="true"
android:listSelector="@drawable/itemselected" />
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<ListView
android:id="@+id/lv_list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_below="@+id/numxback"
android:cacheColorHint="#00000000"
android:drawSelectorOnTop="false"
android:fadingEdge="none"
android:fastScrollEnabled="true"
android:focusable="false"
android:divider="@null"
android:focusableInTouchMode="true"
android:listSelector="@drawable/itemselected" />
|
在main布局里加入了一个列表控件,ListView,它的各个属性在此处不是重点,这里就不多说,看不懂的读者自己去网上搜吧!
datalist.xml
[html] view plaincopyprint?
<?xml version="1.0" encoding="utf-8"?>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<TextView
android:id="@+id/tv_num"
android:layout_width="wrap_content"
android:layout_height="60px"
android:layout_centerVertical="true"
android:background="@drawable/number"
android:gravity="center"
android:paddingLeft="5px"
android:paddingRight="8px"
android:textColor="@android:color/white"
android:textSize="24sp" />
<ImageButton
android:id="@+id/ib_edit"
android:layout_width="60px"
android:layout_height="60px"
android:layout_alignParentRight="true"
android:background="@drawable/edit"
<SPAN style="COLOR: #ff0000">android:onClick="OnItemEditClick"
|
android:paddingRight="5px" />
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<TextView
android:id="@+id/tv_numx"
android:layout_width="150px"
android:layout_height="60px"
android:layout_toRightOf="@+id/tv_num"
android:background="@drawable/number"
android:gravity="center_vertical"
android:singleLine="true"
android:textColor="@android:color/white"
android:textSize="24sp" />
<TextView
android:id="@+id/tv_numy"
android:layout_width="150px"
android:layout_height="60px"
android:layout_toRightOf="@id/tv_numx"
android:layout_toLeftOf="@id/ib_edit"
android:background="@drawable/number"
android:gravity="center_vertical"
android:singleLine="true"
android:textColor="@android:color/white"
android:textSize="24sp" />
|
<?xml version="1.0" encoding="utf-8"?>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
<TextView
android:id="@+id/tv_num"
android:layout_width="wrap_content"
android:layout_height="60px"
android:layout_centerVertical="true"
android:background="@drawable/number"
android:gravity="center"
android:paddingLeft="5px"
android:paddingRight="8px"
android:textColor="@android:color/white"
android:textSize="24sp" />
<ImageButton
android:id="@+id/ib_edit"
android:layout_width="60px"
android:layout_height="60px"
android:layout_alignParentRight="true"
android:background="@drawable/edit"
android:onClick="OnItemEditClick"
android:paddingRight="5px" />
<TextView
android:id="@+id/tv_numx"
android:layout_width="150px"
android:layout_height="60px"
android:layout_toRightOf="@+id/tv_num"
android:background="@drawable/number"
android:gravity="center_vertical"
android:singleLine="true"
android:textColor="@android:color/white"
android:textSize="24sp" />
<TextView
android:id="@+id/tv_numy"
android:layout_width="150px"
android:layout_height="60px"
android:layout_toRightOf="@id/tv_numx"
android:layout_toLeftOf="@id/ib_edit"
android:background="@drawable/number"
android:gravity="center_vertical"
android:singleLine="true"
android:textColor="@android:color/white"
android:textSize="24sp" />
|
列表控件单项布局,在里面加入了三个TextView,一个ImageButton,显示时三个TextView 在前面,最后一个ImageButton。
之前说到的按钮点击事件在Activity里用button.setOnClickListener的方式实现时会屏蔽/占用ListView单项单击事件,这里就在布局里加了一个android:onClick="OnItemEditClick",用于绑定按钮点击事件,然后在java代码中实现这个方法,记得须有一个View类型的参数。
MainActivity.java
[java] view plaincopyprint?
package com.test.customlistview;
import java.util.ArrayList;
import java.util.HashMap;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.DialogInterface.OnClickListener;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ImageButton;
import android.widget.ListView;
import android.widget.RelativeLayout;
import android.widget.SimpleAdapter;
import android.widget.TextView;
import android.widget.Toast;
import android.widget.AdapterView.OnItemLongClickListener;
public class MainActivity extends Activity {
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
ListView dataListView;
SimpleAdapter listAdapter;
ArrayList<HashMap<String, Object>> list;
private int location;
Handler mHandler = new Handler() {
@Override
public void handleMessage(Message msg) {
if (msg.arg1 == 1) {
} else if (msg.arg1 == 2) {
} else if (msg.arg1 == 4) {
if (msg.what == 1) {
dataListView.getChildAt(msg.arg2).setBackgroundResource(
R.drawable.itemback);
}
}
super.handleMessage(msg);
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
dataListView = (ListView) findViewById(R.id.lv_list);
list = new ArrayList<HashMap<String, Object>>();
int count = 20;
HashMap<String, Object> map;
for (int i = 1; i <= count; i++) {
map = new HashMap<String, Object>();
map.put("num", i+ "");
map.put("a1", "²=");
map.put("a2", ""+i*i);
list.add(map);
}
listAdapter = new SimpleAdapter(this, list, R.layout.datalist,
new String[] { "num", "a1", "a2" }, new int[] { R.id.tv_num,
R.id.tv_numx, R.id.tv_numy });
dataListView.setAdapter(listAdapter);
dataListView.setOnItemLongClickListener(new OnItemLongClickListener() {
public boolean onItemLongClick(AdapterView<?> arg0, View view,
int position, long id) {
location = position;
final View nowView = (View) view.findViewById(R.id.ib_edit);
Toast.makeText(getBaseContext(), "location=" + location, 2000)
.show();
OnClickListener listener = new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
if (which == 0) {
Toast.makeText(getBaseContext(), "编辑", Toast.LENGTH_LONG).show();
} else if (which == 1) {
Toast.makeText(getBaseContext(), "删除", Toast.LENGTH_LONG).show();
}
}
};
dataListView.getChildAt(location).setBackgroundResource(
R.drawable.item_frame);
Message message = new Message();
message.arg1 = 4;
message.arg2 = location;
message.what = 1;
mHandler.sendMessageDelayed(message, 500);
String[] Menu = { "编辑", "删除" };
new AlertDialog.Builder(MainActivity.this).setItems(Menu,
listener).show();
return false;
}
});
}
public void OnItemEditClick(View v) {
RelativeLayout layout = (RelativeLayout) v.getParent();
TextView tv1=(TextView)layout.findViewById(R.id.tv_num);
TextView tv2=(TextView)layout.findViewById(R.id.tv_numx);
TextView tv3=(TextView)layout.findViewById(R.id.tv_numy);
ImageButton ib=(ImageButton)layout.findViewById(R.id.ib_edit);
String str="按钮"+tv1.getText()+"点击啦n"+tv1.getText()+tv2.getText()+tv3.getText();
Toast.makeText(getBaseContext(), str, Toast.LENGTH_LONG).show();
}
|
}
package com.test.customlistview;
import java.util.ArrayList;
import java.util.HashMap;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.DialogInterface.OnClickListener;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ImageButton;
import android.widget.ListView;
import android.widget.RelativeLayout;
import android.widget.SimpleAdapter;
import android.widget.TextView;
import android.widget.Toast;
import android.widget.AdapterView.OnItemLongClickListener;
public class MainActivity extends Activity {
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
ListView dataListView;
SimpleAdapter listAdapter;
ArrayList<HashMap<String, Object>> list;
private int location;
Handler mHandler = new Handler() {
@Override
public void handleMessage(Message msg) {
if (msg.arg1 == 1) {
} else if (msg.arg1 == 2) {
} else if (msg.arg1 == 4) {
if (msg.what == 1) {
dataListView.getChildAt(msg.arg2).setBackgroundResource(
R.drawable.itemback);
}
}
super.handleMessage(msg);
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
dataListView = (ListView) findViewById(R.id.lv_list);
list = new ArrayList<HashMap<String, Object>>();
int count = 20;
HashMap<String, Object> map;
for (int i = 1; i <= count; i++) {
map = new HashMap<String, Object>();
map.put("num", i+ "");
map.put("a1", "²=");
map.put("a2", ""+i*i);
list.add(map);
}
listAdapter = new SimpleAdapter(this, list, R.layout.datalist,
new String[] { "num", "a1", "a2" }, new int[] { R.id.tv_num,
R.id.tv_numx, R.id.tv_numy });
dataListView.setAdapter(listAdapter);
dataListView.setOnItemLongClickListener(new OnItemLongClickListener() {
public boolean onItemLongClick(AdapterView<?> arg0, View view,
int position, long id) {
location = position;
final View nowView = (View) view.findViewById(R.id.ib_edit);
Toast.makeText(getBaseContext(), "location=" + location, 2000)
.show();
OnClickListener listener = new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
if (which == 0) {
Toast.makeText(getBaseContext(), "编辑", Toast.LENGTH_LONG).show();
} else if (which == 1) {
Toast.makeText(getBaseContext(), "删除", Toast.LENGTH_LONG).show();
}
}
};
dataListView.getChildAt(location).setBackgroundResource(
R.drawable.item_frame);
Message message = new Message();
message.arg1 = 4;
message.arg2 = location;
message.what = 1;
mHandler.sendMessageDelayed(message, 500);
String[] Menu = { "编辑", "删除" };
new AlertDialog.Builder(MainActivity.this).setItems(Menu,
listener).show();
return false;
}
});
}
public void OnItemEditClick(View v) {
RelativeLayout layout = (RelativeLayout) v.getParent();
TextView tv1=(TextView)layout.findViewById(R.id.tv_num);
TextView tv2=(TextView)layout.findViewById(R.id.tv_numx);
TextView tv3=(TextView)layout.findViewById(R.id.tv_numy);
ImageButton ib=(ImageButton)layout.findViewById(R.id.ib_edit);
String str="按钮"+tv1.getText()+"点击啦n"+tv1.getText()+tv2.getText()+tv3.getText();
Toast.makeText(getBaseContext(), str, Toast.LENGTH_LONG).show();
}
|
}
OnItemEditClick(View v)方法中通过v.getParent();找到她的容器控件,前面的(RelativeLayout)根据你自己的布局里的容器控件而定。然后即可使用该容器控件找到他的所有自控件,然后读者想干嘛就干嘛啦~
上面的dataListView.setOnItemLongClickListener实现ListView的item长按事件,我在这里加了一个显示两条菜单的对话框,用于进行其他操作,如编辑、删除等。
这里也可以实现ListView的点击事件,PS:这段代码是后来加的,直接嵌入源代码中即可,已调试无误。
[java] view plaincopyprint?
dataListView.setOnItemClickListener(new OnItemClickListener() {
|
@Override
public void onItemClick(AdapterView<?> arg0, View view, int arg2,
long arg3) {
TextView tv=(TextView)view.findViewById(R.id.tv_num);
Toast.makeText(getBaseContext(), "您点击了第" + tv.getText()+"行", 2000).show();
}
});
|
dataListView.setOnItemClickListener(new OnItemClickListener() {
|
@Override
public void onItemClick(AdapterView<?> arg0, View view, int arg2,
long arg3) {
TextView tv=(TextView)view.findViewById(R.id.tv_num);
Toast.makeText(getBaseContext(), "您点击了第" + tv.getText()+"行", 2000).show();
}
});修改后的MainActivity.java代码如下
|
[java] view plaincopyprint?
package com.test.customlistview;
import java.util.ArrayList;
import java.util.HashMap;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.DialogInterface.OnClickListener;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ImageButton;
import android.widget.ListView;
import android.widget.RelativeLayout;
import android.widget.SimpleAdapter;
import android.widget.TextView;
import android.widget.Toast;
import android.widget.AdapterView.OnItemLongClickListener;
public class MainActivity extends Activity {
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
ListView dataListView;
SimpleAdapter listAdapter;
ArrayList<HashMap<String, Object>> list;
private int location;
Handler mHandler = new Handler() {
@Override
public void handleMessage(Message msg) {
if (msg.arg1 == 1) {
} else if (msg.arg1 == 2) {
} else if (msg.arg1 == 4) {
if (msg.what == 1) {
dataListView.getChildAt(msg.arg2).setBackgroundResource(
R.drawable.itemback);
}
}
super.handleMessage(msg);
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
dataListView = (ListView) findViewById(R.id.lv_list);
list = new ArrayList<HashMap<String, Object>>();
int count = 20;
HashMap<String, Object> map;
for (int i = 1; i <= count; i++) {
map = new HashMap<String, Object>();
map.put("num", i+ "");
map.put("a1", "²=");
map.put("a2", ""+i*i);
list.add(map);
}
listAdapter = new SimpleAdapter(this, list, R.layout.datalist,
new String[] { "num", "a1", "a2" }, new int[] { R.id.tv_num,
R.id.tv_numx, R.id.tv_numy });
dataListView.setAdapter(listAdapter);
dataListView.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> arg0, View view, int arg2,
long arg3) {
TextView tv=(TextView)view.findViewById(R.id.tv_num);
Toast.makeText(getBaseContext(), "您点击了第" + tv.getText()+"行", 2000).show();
}
});
dataListView.setOnItemLongClickListener(new OnItemLongClickListener() {
public boolean onItemLongClick(AdapterView<?> arg0, View view,
int position, long id) {
location = position;
final View nowView = (View) view.findViewById(R.id.ib_edit);
Toast.makeText(getBaseContext(), "location=" + location, 2000)
.show();
OnClickListener listener = new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
if (which == 0) {
Toast.makeText(getBaseContext(), "编辑", Toast.LENGTH_LONG).show();
} else if (which == 1) {
Toast.makeText(getBaseContext(), "删除", Toast.LENGTH_LONG).show();
}
}
};
dataListView.getChildAt(location).setBackgroundResource(
R.drawable.item_frame);
Message message = new Message();
message.arg1 = 4;
message.arg2 = location;
message.what = 1;
mHandler.sendMessageDelayed(message, 500);
String[] Menu = { "编辑", "删除" };
new AlertDialog.Builder(MainActivity.this).setItems(Menu,
listener).show();
return false;
}
});
}
public void OnItemEditClick(View v) {
RelativeLayout layout = (RelativeLayout) v.getParent();
TextView tv1=(TextView)layout.findViewById(R.id.tv_num);
TextView tv2=(TextView)layout.findViewById(R.id.tv_numx);
TextView tv3=(TextView)layout.findViewById(R.id.tv_numy);
ImageButton ib=(ImageButton)layout.findViewById(R.id.ib_edit);
String str="按钮"+tv1.getText()+"点击啦n"+tv1.getText()+tv2.getText()+tv3.getText();
Toast.makeText(getBaseContext(), str, Toast.LENGTH_LONG).show();
}
|
}
package com.test.customlistview;
import java.util.ArrayList;
import java.util.HashMap;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.DialogInterface.OnClickListener;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ImageButton;
import android.widget.ListView;
import android.widget.RelativeLayout;
import android.widget.SimpleAdapter;
import android.widget.TextView;
import android.widget.Toast;
import android.widget.AdapterView.OnItemLongClickListener;
public class MainActivity extends Activity {
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
ListView dataListView;
SimpleAdapter listAdapter;
ArrayList<HashMap<String, Object>> list;
private int location;
Handler mHandler = new Handler() {
@Override
public void handleMessage(Message msg) {
if (msg.arg1 == 1) {
} else if (msg.arg1 == 2) {
} else if (msg.arg1 == 4) {
if (msg.what == 1) {
dataListView.getChildAt(msg.arg2).setBackgroundResource(
R.drawable.itemback);
}
}
super.handleMessage(msg);
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
dataListView = (ListView) findViewById(R.id.lv_list);
list = new ArrayList<HashMap<String, Object>>();
int count = 20;
HashMap<String, Object> map;
for (int i = 1; i <= count; i++) {
map = new HashMap<String, Object>();
map.put("num", i+ "");
map.put("a1", "²=");
map.put("a2", ""+i*i);
list.add(map);
}
listAdapter = new SimpleAdapter(this, list, R.layout.datalist,
new String[] { "num", "a1", "a2" }, new int[] { R.id.tv_num,
R.id.tv_numx, R.id.tv_numy });
dataListView.setAdapter(listAdapter);
dataListView.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> arg0, View view, int arg2,
long arg3) {
TextView tv=(TextView)view.findViewById(R.id.tv_num);
Toast.makeText(getBaseContext(), "您点击了第" + tv.getText()+"行", 2000).show();
}
});
dataListView.setOnItemLongClickListener(new OnItemLongClickListener() {
public boolean onItemLongClick(AdapterView<?> arg0, View view,
int position, long id) {
location = position;
final View nowView = (View) view.findViewById(R.id.ib_edit);
Toast.makeText(getBaseContext(), "location=" + location, 2000)
.show();
OnClickListener listener = new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
if (which == 0) {
Toast.makeText(getBaseContext(), "编辑", Toast.LENGTH_LONG).show();
} else if (which == 1) {
Toast.makeText(getBaseContext(), "删除", Toast.LENGTH_LONG).show();
}
}
};
dataListView.getChildAt(location).setBackgroundResource(
R.drawable.item_frame);
Message message = new Message();
message.arg1 = 4;
message.arg2 = location;
message.what = 1;
mHandler.sendMessageDelayed(message, 500);
String[] Menu = { "编辑", "删除" };
new AlertDialog.Builder(MainActivity.this).setItems(Menu,
listener).show();
return false;
}
});
}
public void OnItemEditClick(View v) {
RelativeLayout layout = (RelativeLayout) v.getParent();
TextView tv1=(TextView)layout.findViewById(R.id.tv_num);
TextView tv2=(TextView)layout.findViewById(R.id.tv_numx);
TextView tv3=(TextView)layout.findViewById(R.id.tv_numy);
ImageButton ib=(ImageButton)layout.findViewById(R.id.ib_edit);
String str="按钮"+tv1.getText()+"点击啦n"+tv1.getText()+tv2.getText()+tv3.getText();
Toast.makeText(getBaseContext(), str, Toast.LENGTH_LONG).show();
}
|
}
- Android ListView中Item点击事件失效解决方案
欢迎关注公众号,每天推送Android技术文章,二维码如下:(可扫描) 在平常的开发过程中,我们的ListView可能不只是简单的显示下文本或者按钮,更多的是显示复杂的布局,这样的话,我们就得自己写布 ...
- 使用PullToRefreshListView时遇到Item点击事件失效问题 解决方法
最近在自己的项目中使用到了以下开源项目: https://github.com/nanchen2251/pullToRefreshDemo 相关介绍博客如下: http://www.cnblogs.c ...
- jquery点击事件失效原因和解决办法
在使用jQuery绑定点击事件的时候,有时候会遇到点击无效,这种情况大多出现在动态添加元素的时候 例如:给demo里添加li元素给li绑定点击事件 $("#demo").appen ...
- ListView item中有button或EditText时 点击事件失效问题的解决
加入:android:descendantFocusability="blocksDescendants" 代码如下: <LinearLayout xmlns:android ...
- ListVIew点击事件失效
转自:http://blog.csdn.net/zhufuing/article/details/8677407 记录下自己所犯的错误,在写ListView的点击事件时OnItemClickListe ...
- ListView点击事件失效(item里面有button按钮控件)解决方法
ListView点击事件失效解决方法: 一般出现这个情况,就是你的item里面有按钮的点击事件,你的item里面有button控件,button控件是抢占焦点的,只要在你的item布局里面这样子写就可 ...
- Android学习---ListView的点击事件,simpleAdapter和arrayadapter,SimpleCursoAdapter的原理和使用
如题,本文将介绍 listview的点击事件,simpleAdapter和arrayadapter的原理和使用. 1.ListView的注册点击事件 //注册点击事件 personListView.s ...
- ListView的item中有button和checkbox,listview的点击事件无效
ListView的item中有button和checkbox,listview的点击事件无效,解决办法: 在item布局文件中的根控件中添加属性设置: android:descendantFocusa ...
- android listview实现点击某个item后使其显示在屏幕顶端
在该listview的点击事件中加入一下代码即可 listView.setSelectionFromTop(position, 0);
随机推荐
- p86商空间也是Banach空间
1.为什么要引入Zk? 2.为什么这个等式成立,和为什么要引入uk? 3.为什么为什么等于0? 属于M,则商空间是0元,p128最上面的第二个笔记
- 【学习总结】之 3Blue1Brown系列
刷知乎看到的,各种力荐. YouTube: https://www.youtube.com/channel/UCYO_jab_esuFRV4b17AJtAw/featured B站: https:// ...
- #Leetcode# 985. Sum of Even Numbers After Queries
https://leetcode.com/problems/sum-of-even-numbers-after-queries/ We have an array A of integers, and ...
- java kill thread command line
multithreading - How do you kill a Thread in Java? - Stack Overflowhttps://stackoverflow.com/questio ...
- jmeter内存溢出解决办法
原文:http://blog.51cto.com/xqtesting/2107927 使用jmeter进行压力测试时遇到一段时间后报内存溢出outfmenmory错误,导致jmeter卡死了,先尝试在 ...
- Python3练习题 011:成绩打分
# print('-----判断输入值和60大小判断')# b=int(input('input num'))# if b >60:# print('良')# elif b==60:# prin ...
- Linux基础学习(11)--Shell编程
第十一章——Shell编程 一.基础正则表达式 1.正则表达式与通配符(*,?,[ ]): 2.基础正则表达式: 二.字符截取命令 1.cut字段提取命令: 空格分割时,不知道空格有多少个,无法分割行 ...
- FMC
FMC (FPGA Mezzanine Card) 编辑 FMC:英文全称,FPGA Mezzanine Card.是一个应用范围.适应环境范围和市场领域范围都很广的通用模块.FMC连接器(FMC C ...
- VS Code 编辑器
使用VS Code 编辑器有一段时间了,感觉非常好用,已经成为了我的第一选择了.现在需要学习了一下了. 1,更改编辑器的默认设置 文件 =>首选项 => 设置 或 ctrl + ,(逗号) ...
- vs + babelua + cocos2d-x
https://blog.csdn.net/dugaoda/article/details/60467037 https://blog.csdn.net/taotanty/article/detail ...