zoukankan      html  css  js  c++  java
  • 使用isInEditMode解决可视化编辑器无法识别自定义控件的问题(转)

    isInEditMode:

    Indicates whether this View is currently in edit mode. A View is usually in edit mode when displayed within a developer tool. For instance, if this View is being drawn by a visual user interface builder, this method should return true. Subclasses should check the return value of this method to provide different behaviors if their normal behavior might interfere with the host environment. For instance: the class spawns a thread in its constructor, the drawing code relies on device-specific features, etc. This method is usually checked in the drawing code of custom widgets.


    如果在自定义控件的构造函数或者其他绘制相关地方使用系统依赖的代码,会导致可视化编辑器无法报错并提示:Use View.isInEditMode() in your custom views to skip code when shown in Eclipse


    比如:

    public class LockRelativeLayout extends RelativeLayout {
    private Handler mainHandler = null; //与主Activity通信的Handler对象



    public LockRelativeLayout(Context context, AttributeSet attrs) {
    super(context, attrs, 0);
    mContext = context;
    if (isInEditMode()) { return; }
    mainHandler = ((SPActivity)mContext).getMHandler();
    }

    }

    如果不加上if (isInEditMode()) { return; },标红处代码会导致可视化编辑报错

  • 相关阅读:
    柯里化函数
    函数部分应用Partial application
    001Spark文件分析测试
    001Spring4.2基本环境搭建
    Rectangle 响应按键
    jQuery打印Html页面自动分页
    jquery实现页面局部刷新
    2014 年10个最佳的PHP图像操作库--留着有用
    20 个势头最猛的开发者工具
    20+个很有用的 jQuery 的 Google 地图插件
  • 原文地址:https://www.cnblogs.com/weixiao870428/p/3569162.html
Copyright © 2011-2022 走看看