Exemplo n.º 1
0
  public SKASCIIDisplay(Context context, int itemId, int sceneId, AcillInputInfo info) {
    mContext = context;
    isOnclick = false;
    isTouchFlag = true;
    isShowFlag = true;
    showByUser = false;
    touchByUser = false;
    showByAddr = false;
    touchByAddr = false;
    // keyIsShow = true;
    this.sceneId = sceneId;
    this.itemId = itemId;
    showValue = "";
    mPaint = new Paint();
    items = new SKItems();
    this.info = info;
    notTouchOpenKey = false;

    if (info != null) {
      mRect = new Rect();
      mRect.left = info.getnStartX();
      mRect.right = info.getnStartX() + info.getnWidth();
      mRect.top = info.getnStartY();
      mRect.bottom = info.getnStartY() + info.getnHeight();

      text = new StaticTextModel();
      text.setM_backColorPadding(info.getnBackColor());
      text.setM_eTextAlign(info.getnShowStyle());
      text.setM_nFontColor(info.getnFontColor());
      text.setM_nFontSize(info.getnFontsize());
      text.setM_sFontFamly(info.getsFontStyle());
      text.setM_textLanguageId(1);
      text.setM_textPro((short) (info.geteFontCss()));
      text.setStartX(info.getnTextStartX());
      text.setStartY(info.getnTextStartY());
      text.setRectHeight(info.getnTextHeight());
      text.setRectWidth(info.getnTextWidth());
      text.setM_alphaPadding(info.getnTransparent()); // 设置透明度
      //			if (info.getnTransparent() == 0) {
      //				text.setBorderAlpha(255);
      //				text.setLineColor(Color.BLACK);
      //				text.setLineWidth(1);
      //			}

      textItem = new TextItem(text);
      textItem.initTextPaint();
      textItem.initRectBoderPaint();
      textItem.initRectPaint();

      items.itemId = this.itemId;
      items.nCollidindId = info.getnCollidindId();
      items.nZvalue = info.getnZvalue();
      items.sceneId = sceneId;
      items.rect = mRect;
      items.mGraphics = this;

      if (null != info.getmTouchinInfo()) {
        if (-1 != info.getmTouchinInfo().getnAddrId() && info.getmTouchinInfo().isbTouchByAddr()) {
          touchByAddr = true;
        }
        if (info.getmTouchinInfo().isbTouchByUser()) {
          touchByUser = true;
        }
      }
      if (null != info.getmShowInfo()) {
        if (-1 != info.getmShowInfo().getnAddrId() && info.getmShowInfo().isbShowByAddr()) {
          showByAddr = true;
        }
        if (info.getmShowInfo().isbShowByUser()) {
          showByUser = true;
        }
      }

      // 注册地址值
      registAddr();
    }
  }