修复问题

This commit is contained in:
18401019693 2023-07-05 17:07:11 +08:00
parent 003c7f9e12
commit 12bedd630e
2 changed files with 3 additions and 3 deletions

View File

@ -24,11 +24,11 @@ ext {
baiduAppKey : "zgCgFhUKEOV7I3ZXDFpTfnRB",
baiduAppSecretKey: "nEVSgmuGpU0pjPr6VleEGGAl0hzGW52S",
// true表示谷歌支付 false
isGooglePlay : true,
isGooglePlay : false,
//
isUploadLog : true,
//
isPluginModel : false,
isPluginModel : true,
]
}
//7664 1

View File

@ -44,7 +44,7 @@ public class LuckUserRedPacketPopup extends CenterPopupView {
userList = findViewById(R.id.user_list);
redPacketLuckUserAdapter = new RedPacketLuckUserAdapter();
redPacketLuckUserAdapter.addData(packetGiftModels);
userList.setLayoutManager(new LinearLayoutManager(getContext(), LinearLayoutManager.VERTICAL, false));
userList.setLayoutManager(new LinearLayoutManager(getContext(), LinearLayoutManager.VERTICAL, true));
userList.setAdapter(redPacketLuckUserAdapter);
ViewClicksAntiShake.clicksAntiShake(findViewById(R.id.illustrate_close), () -> dismiss());
}