|
|
@@ -88,10 +88,6 @@ public class ActMyMoney extends BaseActivity {
|
|
|
TextView my_money_dingxiang_amount;
|
|
|
@BindView(R.id.my_money_dingxiang_amount_iv)
|
|
|
ImageView my_money_dingxiang_amount_iv;
|
|
|
- @BindView(R.id.my_money_appoint_task_amount)
|
|
|
- TextView my_money_appoint_task_amount;
|
|
|
- @BindView(R.id.mm_at_red_dot_v)
|
|
|
- View mm_at_red_dot_v;
|
|
|
|
|
|
private TitleFragmentListAdapter mAdapter;
|
|
|
|
|
|
@@ -113,7 +109,6 @@ public class ActMyMoney extends BaseActivity {
|
|
|
TitleBarUtils.getInstance()
|
|
|
.setTitle(this, "我的资产")
|
|
|
.setTitleFinish(this);
|
|
|
- ViewUtil.setVisibility(mm_at_red_dot_v, DataUtil.getAsBoolean(FgtHome.KEY_HAS_APPOINT_TASK, false));
|
|
|
//顶部背景添加弧度
|
|
|
GlideImageLoader.setImage(act_my_money_bg_iv, ViewUtil.getNetImgByName("home_blue_bg_hb"), R.mipmap.home_blue_bg);
|
|
|
mAdapter = new TitleFragmentListAdapter(getSupportFragmentManager());
|
|
|
@@ -242,8 +237,6 @@ public class ActMyMoney extends BaseActivity {
|
|
|
R.id.my_money_dingxiang_amount_iv,
|
|
|
R.id.my_money_dingxiang_amount,
|
|
|
R.id.my_money_dingxiang_tag,
|
|
|
- R.id.my_money_appoint_task_amount,
|
|
|
- R.id.my_money_appoint_task_tag,
|
|
|
})
|
|
|
public void onViewClicked(View view) {
|
|
|
switch (view.getId()) {
|
|
|
@@ -253,11 +246,6 @@ public class ActMyMoney extends BaseActivity {
|
|
|
case R.id.my_money_recharge_tv://充值
|
|
|
Jump2View.getInstance().goRechargeAct(ActMyMoney.this, "我的资产");
|
|
|
break;
|
|
|
- case R.id.my_money_appoint_task_amount://定向奖励
|
|
|
- case R.id.my_money_appoint_task_tag://定向奖励
|
|
|
- ViewUtil.setVisibility(mm_at_red_dot_v, false);
|
|
|
- Jump2View.getInstance().goAppointTaskList(true);
|
|
|
- break;
|
|
|
case R.id.my_money_dingxiang_amount_iv://定向货币详情
|
|
|
case R.id.my_money_dingxiang_amount://定向货币详情
|
|
|
case R.id.my_money_dingxiang_tag://定向货币详情
|
|
|
@@ -316,7 +304,6 @@ public class ActMyMoney extends BaseActivity {
|
|
|
my_money_agent_extract.setText(getString(R.string.total_money, NumberFormatUtils.retainMost2W(userAssets.getExtension_extract())));
|
|
|
my_money_recharge_amount.setText(getString(R.string.total_money, NumberFormatUtils.retainMost2W(userAssets.getUse_balance())));
|
|
|
my_money_available_amount.setText(getString(R.string.available_amount, NumberFormatUtils.retainMost2W(userAssets.getCash_withdrawal())));
|
|
|
- my_money_appoint_task_amount.setText(getString(R.string.total_money, NumberFormatUtils.retainMost2W(userAssets.getAppoint_task_amount())));
|
|
|
my_money_dingxiang_amount.setText(getString(R.string.total_money, NumberFormatUtils.retainMost2W(userAssets.getDirectional_currency())));
|
|
|
}
|
|
|
|
|
|
@@ -329,7 +316,6 @@ public class ActMyMoney extends BaseActivity {
|
|
|
my_money_agent_extract.setText(getString(R.string.total_money, "0.00"));
|
|
|
my_money_recharge_amount.setText(getString(R.string.total_money, "0.00"));
|
|
|
my_money_available_amount.setText(getString(R.string.available_amount, "0.00"));
|
|
|
- my_money_appoint_task_amount.setText(getString(R.string.total_money, "0.00"));
|
|
|
my_money_dingxiang_amount.setText(getString(R.string.total_money, "0.00"));
|
|
|
}
|
|
|
|
|
|
@@ -348,8 +334,4 @@ public class ActMyMoney extends BaseActivity {
|
|
|
Jump2View.getInstance().goGameRecharge(this, null);
|
|
|
}
|
|
|
|
|
|
- //点击龙猫电竞
|
|
|
- public void onClickLongMao(View view) {
|
|
|
- Jump2View.getInstance().gotoLongMao(this);
|
|
|
- }
|
|
|
}
|