Android ListView添加按钮后自身无响应。
在ListView上加了个Button 后就只响应Button 而不响应ListView的单击了。 后来终于解决了。
是因为Button获取了焦点, 导致ListView没有了焦点, 所以响应不了。
我们只要在Button上加上两句Xml的属性即可。
android:focusable="false"
android:focusableInTouchMode="false"
Android ListView添加按钮后自身无响应。
在ListView上加了个Button 后就只响应Button 而不响应ListView的单击了。 后来终于解决了。
是因为Button获取了焦点, 导致ListView没有了焦点, 所以响应不了。
我们只要在Button上加上两句Xml的属性即可。
android:focusable="false"
android:focusableInTouchMode="false"
内容版权声明:除非注明,否则皆为本站原创文章。