日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) >

Android -- isInEditMode

發(fā)布時(shí)間:2025/4/9 41 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Android -- isInEditMode 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

解釋

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.

如果在自定義控件的構(gòu)造函數(shù)或者其他繪制相關(guān)地方使用系統(tǒng)依賴(lài)的代碼,會(huì)導(dǎo)致可視化編輯器無(wú)法報(bào)錯(cuò)并提示: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對(duì)象public LockRelativeLayout(Context context, AttributeSet attrs) {super(context, attrs, 0);mContext = context;if (isInEditMode()) { return; }mainHandler = ((MainActivity)mContext).getMHandler();} }

如果不加上if (isInEditMode()) { return; },標(biāo)紅處代碼會(huì)導(dǎo)致可視化編輯報(bào)錯(cuò)

我是天王蓋地虎的分割線

?

?

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

轉(zhuǎn)載于:https://www.cnblogs.com/yydcdut/p/4456722.html

總結(jié)

以上是生活随笔為你收集整理的Android -- isInEditMode的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。