예제 #1
0
  /** 投注提示框中的信息 */
  public String getTouzhuAlert() {

    return "注数:"
        + addView.getAllZhu()
        + "注     "
        + "金额:"
        + +iProgressQishu * addView.getAllAmt() * iProgressBeishu
        + "元";
  }
예제 #2
0
  /** 投注提示框中的信息 */
  public void getTouzhuAlert() {
    if (type.equals("zc")) {
      zhushu.setText(betAndGift.getZhushu() + "注     ");
      jine.setText(
          iProgressQishu * (Integer.valueOf(betAndGift.getAmount()) / 100) * iProgressBeishu + "元");
    } else {
      zhushu.setText(addview.getAllZhu() + "注     ");
      jine.setText(iProgressQishu * addview.getAllAmt() * iProgressBeishu + "元");
    }

    //		return "注数:"
    //				+ addview.getAllZhu() + "注     "
    //				+ "金额:" +
    //				+ iProgressQishu * addview.getAllAmt() * iProgressBeishu
    //				+ "元";
  }