zoukankan      html  css  js  c++  java
  • Android -- 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

    code

    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 = ((MainActivity)mContext).getMHandler();
        }
    }

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

    image

    我是天王盖地虎的分割线

    http://stackoverflow.com/questions/15423149/how-to-use-isineditmode-to-see-layout-with-custom-view-in-the-editor

  • 相关阅读:
    Linux 误卸载软件,所有命令不能用了咋办
    MySQL 全局锁和表锁
    MongoDB 基础
    MySQL 常见错误
    MySQL 锁信息和事务
    B2C电子商务平台概述及开发公司推荐
    O2O本地生活平台推荐
    OA办公系统哪个公司做的好
    集团企业OA系统选型推荐
    协同OA办公系统选型推荐
  • 原文地址:https://www.cnblogs.com/yydcdut/p/4456722.html
Copyright © 2011-2022 走看看