【Android 7.0 TextView点击事件无效修复方案】别裁伪体亲风雅,转益多师是汝师。这篇文章主要讲述Android 7.0 TextView点击事件无效修复方案相关的知识,希望能为你提供帮助。
public class PostTextView extends TextView {
private Handler handler = new Handler(Looper.getMainLooper());
public PostTextView(Context context) {
super(context);
}
public PostTextView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public PostTextView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@Override
public boolean post(Runnable action) {
// FIXME: 2017/5/25 android 7.0以上post方法发生改变,导致点击事件无效
if(Build.VERSION.SDK_INT > = 24){
handler.post(action);
return true;
}
return super.post(action);
}
}
推荐阅读
- springmvc之@Controller@RequestMapping等注解解说
- Spring mvc中@RequestMapping 基本用法
- word怎样画图?word画图图文详细教程攻略_Word专区
- excel筛选怎样用?excel2013筛选运用图文详细教程_Excel专区
- 福昕PDF浏览器无法复制文字的处理办法_其它办公
- 福昕PDF浏览器语言设置办法_其它办公
- 福昕PDF浏览器怎样关闭广告?_其它办公
- 福昕PDF浏览器浏览模式切换办法_其它办公
- office 2003精简版下载地址_其它办公