當前位置: 首頁>>代碼示例>>Java>>正文


Java IdentifyNumPageLayout.getLayout方法代碼示例

本文整理匯總了Java中cn.smssdk.gui.layout.IdentifyNumPageLayout.getLayout方法的典型用法代碼示例。如果您正苦於以下問題:Java IdentifyNumPageLayout.getLayout方法的具體用法?Java IdentifyNumPageLayout.getLayout怎麽用?Java IdentifyNumPageLayout.getLayout使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在cn.smssdk.gui.layout.IdentifyNumPageLayout的用法示例。


在下文中一共展示了IdentifyNumPageLayout.getLayout方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: onCreate

import cn.smssdk.gui.layout.IdentifyNumPageLayout; //導入方法依賴的package包/類
public void onCreate() {
	IdentifyNumPageLayout page = new IdentifyNumPageLayout(activity);
	LinearLayout layout = page.getLayout();

	if (layout != null) {
		activity.setContentView(layout);
		activity.findViewById(ResHelper.getIdRes(activity, "ll_back")).setOnClickListener(this);

		btnSubmit = (Button) activity.findViewById(ResHelper.getIdRes(activity, "btn_submit"));
		btnSubmit.setOnClickListener(this);
		btnSubmit.setEnabled(false);

		tvTitle = (TextView) activity.findViewById(ResHelper.getIdRes(activity, "tv_title"));
		int resId = ResHelper.getStringRes(activity, "smssdk_write_identify_code");
		if (resId > 0) {
			tvTitle.setText(resId);
		}

		etIdentifyNum = (EditText) activity.findViewById(ResHelper.getIdRes(activity, "et_put_identify"));

		tvIdentifyNotify = (TextView) activity.findViewById(ResHelper.getIdRes(activity, "tv_identify_notify"));
		resId = ResHelper.getStringRes(activity, "smssdk_send_mobile_detail");
		if (resId > 0) {
			String text = getContext().getString(resId);
			tvIdentifyNotify.setText(Html.fromHtml(text));
		}

		tvPhone = (TextView) activity.findViewById(ResHelper.getIdRes(activity, "tv_phone"));
		tvPhone.setText(formatedPhone);

		tvUnreceiveIdentify = (TextView) activity.findViewById(ResHelper.getIdRes(activity, "tv_unreceive_identify"));
		resId = ResHelper.getStringRes(activity, "smssdk_receive_msg");
		if (resId > 0) {
			String unReceive = getContext().getString(resId, time);
			tvUnreceiveIdentify.setText(Html.fromHtml(unReceive));
		}
		tvUnreceiveIdentify.setOnClickListener(this);
		tvUnreceiveIdentify.setEnabled(false);

		ivClear = (ImageView) activity.findViewById(ResHelper.getIdRes(activity, "iv_clear"));
		ivClear.setOnClickListener(this);

		countDown();
	}

}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:47,代碼來源:SmartVerifyPage.java

示例2: onCreate

import cn.smssdk.gui.layout.IdentifyNumPageLayout; //導入方法依賴的package包/類
public void onCreate() {
	IdentifyNumPageLayout page = new IdentifyNumPageLayout(activity);
	LinearLayout layout = page.getLayout();

	if (layout != null) {
		activity.setContentView(layout);
		activity.findViewById(Res.id.ll_back).setOnClickListener(this);

		btnSubmit = (Button) activity.findViewById(Res.id.btn_submit);
		btnSubmit.setOnClickListener(this);
		btnSubmit.setEnabled(false);

		tvTitle = (TextView) activity.findViewById(Res.id.tv_title);
		int resId = getStringRes(activity, "smssdk_write_identify_code");
		if (resId > 0) {
			tvTitle.setText(resId);
		}

		etIdentifyNum = (EditText) activity.findViewById(Res.id.et_put_identify);

		tvIdentifyNotify = (TextView) activity.findViewById(Res.id.tv_identify_notify);
		resId = getStringRes(activity, "smssdk_send_mobile_detail");
		if (resId > 0) {
			String text = getContext().getString(resId);
			tvIdentifyNotify.setText(Html.fromHtml(text));
		}

		tvPhone = (TextView) activity.findViewById(Res.id.tv_phone);
		tvPhone.setText(formatedPhone);

		tvUnreceiveIdentify = (TextView) activity.findViewById(Res.id.tv_unreceive_identify);
		resId = getStringRes(activity, "smssdk_receive_msg");
		if (resId > 0) {
			String unReceive = getContext().getString(resId, time);
			tvUnreceiveIdentify.setText(Html.fromHtml(unReceive));
		}
		tvUnreceiveIdentify.setOnClickListener(this);
		tvUnreceiveIdentify.setEnabled(false);

		ivClear = (ImageView) activity.findViewById(Res.id.iv_clear);
		ivClear.setOnClickListener(this);

		countDown();
	}

}
 
開發者ID:zzlnewair,項目名稱:Myshop,代碼行數:47,代碼來源:SmartVerifyPage.java


注:本文中的cn.smssdk.gui.layout.IdentifyNumPageLayout.getLayout方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。