RechargeResultActivity.java 1008 Bytes
Newer Older
ydl committed
1 2 3
package com.yidianling.user.mine;

import com.ydl.ydlcommon.base.BaseActivity;
4
import com.ydl.ydlcommon.bean.StatusBarOptions;
ydl committed
5 6 7
import com.ydl.ydlcommon.view.JumpTextView;
import com.yidianling.user.R;

8 9
import org.jetbrains.annotations.NotNull;

ydl committed
10 11 12 13 14 15
/**
 * 充值结果
 * Created by softrice on 16/1/18.
 */
public class RechargeResultActivity extends BaseActivity {

16 17 18 19 20
    @NotNull
    @Override
    public StatusBarOptions getStatusViewOptions() {
        return new StatusBarOptions(true,true);
    }
ydl committed
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38

    @Override
    protected int layoutResId() {
        return R.layout.user_mine_activity_recharge_result;
    }

    @Override
    protected void initDataAndEvent() {
        JumpTextView jtv_money = findViewById(R.id.jtv_money);
        JumpTextView jtv_id = findViewById(R.id.jtv_id);
        String money = getIntent().getStringExtra("money");
        String rechargeId = getIntent().getStringExtra("rechargeId");
        jtv_money.setRightText(money);
        jtv_id.setRightText(rechargeId);
    }


}