本文整理匯總了Java中cn.smssdk.gui.layout.IdentifyNumPageLayout類的典型用法代碼示例。如果您正苦於以下問題:Java IdentifyNumPageLayout類的具體用法?Java IdentifyNumPageLayout怎麽用?Java IdentifyNumPageLayout使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
IdentifyNumPageLayout類屬於cn.smssdk.gui.layout包,在下文中一共展示了IdentifyNumPageLayout類的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();
}
}
示例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();
}
}