private void initData() {
Config config = (Config) getIntent().getSerializableExtra(MiniPayUtils.EXTRA_KEY_PAY_CONFIG);
this.wechatQaImage = config.getWechatQaImage();
this.aliQaImage = config.getAliQaImage();
this.wechatTip = config.getWechatTip();
this.aliTip = config.getAliTip();
this.aliZhiKey = config.getAliZhiKey();
if (!checkLegal()) {
throw new IllegalStateException("MiniPay Config illegal!!!");
} else {
if (TextUtils.isEmpty(wechatTip)) wechatTip = getString(R.string.wei_zhi_tip);
if (TextUtils.isEmpty(aliTip)) aliTip = getString(R.string.ali_zhi_tip);
mZhiBg.setBackgroundResource(R.drawable.common_bg);
mTitleTv.setText(R.string.wei_zhi_title);
mSummeryTv.setText(wechatTip);
mQaImage.setImageResource(wechatQaImage);
}
ObjectAnimator animator = ObjectAnimator.ofFloat(mTip, "alpha", 0, 0.66f, 1.0f, 0);
animator.setDuration(2888);
animator.setRepeatCount(6);
animator.setInterpolator(new AccelerateDecelerateInterpolator());
animator.setRepeatMode(ValueAnimator.REVERSE);
animator.start();
}
ZhiActivity.java 文件源码
java
阅读 22
收藏 0
点赞 0
评论 0
项目:MiniPay
作者:
评论列表
文章目录