财富榜周榜前三无关注按钮时,样式错误

This commit is contained in:
18401019693 2023-11-02 16:39:52 +08:00
parent ab2275d93b
commit 09bb0a606a
3 changed files with 2 additions and 2 deletions

View File

@ -197,7 +197,7 @@ public class HomeRankFragment extends BaseFragment {
getItem(position, mName1, mName2, mName3).setText(user.getUserNicename());
getItem(position, mVotes1, mVotes2, mVotes3).setText(user.getMoney());
if (user.isFollow()) {
getItem(position, mBtnFollow1, mBtnFollow2, mBtnFollow3).setVisibility(View.GONE);
getItem(position, mBtnFollow1, mBtnFollow2, mBtnFollow3).setVisibility(View.INVISIBLE);
} else {
getItem(position, mBtnFollow1, mBtnFollow2, mBtnFollow3).setVisibility(View.VISIBLE);
}

View File

@ -110,7 +110,7 @@ public class HomeRankListAdapter extends RecyclerView.Adapter<HomeRankListAdapte
@Override
public void onSuccess(FollowBean data) {
ToastUtil.show(WordUtil.getNewString(R.string.system_tip_success));
v.setVisibility(View.GONE);
v.setVisibility(View.INVISIBLE);
}
@Override

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 45 KiB