修复在部分设备上启动广告会闪烁的问题

This commit is contained in:
juntao
2021-02-04 20:41:46 +08:00
parent 4ab0f066df
commit d043a89f3e

View File

@ -389,6 +389,10 @@ public class MainActivity extends BaseActivity {
private void showAd(StartupAdEntity ad) {
TextView adContentTv = findViewById(R.id.adContentTv);
View containerView = findViewById(R.id.maskContainer);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
containerView.setElevation(500F);
}
adContentTv.setText(ad.getDesc());
adContentTv.setVisibility(View.VISIBLE);
if (ad.getButton()) {