首页 > 代码库 > 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);
}
}
Android 7.0 TextView点击事件无效修复方案
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。