修复在部分设备上启动广告会闪烁的问题
This commit is contained in:
@ -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()) {
|
||||
|
||||
Reference in New Issue
Block a user