| | |
| | | package com.dayu.qihealonelibrary.activity; |
| | | |
| | | |
| | | |
| | | import static com.dayu.baselibrary.view.TitleBar.ClickType_RIGHT_TEXT; |
| | | |
| | | import android.os.Bundle; |
| | |
| | | import com.dayu.baselibrary.view.datepicker.CustomDatePicker; |
| | | import com.dayu.baselibrary.view.datepicker.DateFormatUtils; |
| | | import com.dayu.qihealonelibrary.adapter.RechargeAdapter; |
| | | import com.dayu.qihealonelibrary.databinding.ActivityRechargeListBinding; |
| | | import com.dayu.qihealonelibrary.databinding.ActivityRechargeListQhaBinding; |
| | | import com.dayu.qihealonelibrary.dbBean.RechargeBean; |
| | | |
| | | import com.scwang.smart.refresh.footer.ClassicsFooter; |
| | | import com.scwang.smart.refresh.layout.api.RefreshLayout; |
| | | import com.scwang.smart.refresh.layout.listener.OnLoadMoreListener; |
| | |
| | | * Date: 2023-11-5 09:52 |
| | | * Description: 充值记录 |
| | | */ |
| | | public class RechargeListActivity extends QHAloneBaseActivity { |
| | | public class RechargeListActivity extends BaseActivity { |
| | | |
| | | ActivityRechargeListBinding rechargeListBinding; |
| | | ActivityRechargeListQhaBinding rechargeListBinding; |
| | | RechargeAdapter adapter; |
| | | List<RechargeBean> rechargeList = new ArrayList<>(); |
| | | |
| | |
| | | @Override |
| | | protected void onCreate(Bundle savedInstanceState) { |
| | | super.onCreate(savedInstanceState); |
| | | rechargeListBinding = ActivityRechargeListBinding.inflate(LayoutInflater.from(this)); |
| | | rechargeListBinding = ActivityRechargeListQhaBinding.inflate(LayoutInflater.from(this)); |
| | | setContentView(rechargeListBinding.getRoot()); |
| | | setRightButton(); |
| | | initDatePicker(); |