Commit ad619d54 authored by wanglei's avatar wanglei

Merge remote-tracking branch 'origin/master'

parents 980a2cb9 16332edf
Pipeline #1412 canceled with stages
......@@ -382,7 +382,7 @@ public class CleanJunkActivity extends AppCompatActivity {
handler = new Handler();
Intent intent = new Intent(this, EndCleanJunkActivity.class);
handler.postDelayed(() -> {
AdmobHelper.INSTANCE.showAppOpenAd(this,
AdmobHelper.INSTANCE.showInterstitialAd(this,
() -> {
binding.radarview.setSearching(false);
intent.putExtra("cleanstr", str);
......
......@@ -33,7 +33,7 @@ public class EndCleanJunkActivity extends AppCompatActivity {
initCustDialog();
});
binding.buttonBatteryInfoCheckNo.setOnClickListener(v->{
AdmobHelper.INSTANCE.showAppOpenAd(this,
AdmobHelper.INSTANCE.showInterstitialAd(this,
() -> {
startActivity(new Intent(this, InfoActivity.class));
finish();
......@@ -52,7 +52,7 @@ public class EndCleanJunkActivity extends AppCompatActivity {
});
binding.buttonAppManagerCheckNo.setOnClickListener(v->{
AdmobHelper.INSTANCE.showAppOpenAd(this,
AdmobHelper.INSTANCE.showInterstitialAd(this,
() -> {
startActivity(new Intent(this, BatteryInfoActivity.class));
finish();
......@@ -71,7 +71,7 @@ public class EndCleanJunkActivity extends AppCompatActivity {
});
binding.buttonWhatsappCheckNo.setOnClickListener(v->{
AdmobHelper.INSTANCE.showAppOpenAd(this,
AdmobHelper.INSTANCE.showInterstitialAd(this,
() -> {
startActivity(new Intent(this, WhatsAppActivity.class));
finish();
......@@ -90,7 +90,7 @@ public class EndCleanJunkActivity extends AppCompatActivity {
});
binding.buttonAppProcessCheckNo.setOnClickListener(v->{
AdmobHelper.INSTANCE.showAppOpenAd(this,
AdmobHelper.INSTANCE.showInterstitialAd(this,
() -> {
startActivity(new Intent(this, AppProcessActivity.class));
finish();
......@@ -109,7 +109,7 @@ public class EndCleanJunkActivity extends AppCompatActivity {
});
binding.buttonCleanJunkCleanNo.setOnClickListener(v->{
AdmobHelper.INSTANCE.showAppOpenAd(this,
AdmobHelper.INSTANCE.showInterstitialAd(this,
() -> {
startActivity(new Intent(this, CleanJunkActivity.class));
finish();
......@@ -128,7 +128,7 @@ public class EndCleanJunkActivity extends AppCompatActivity {
});
binding.buttonLargefilecleanerCleanUp.setOnClickListener(v->{
AdmobHelper.INSTANCE.showAppOpenAd(this,
AdmobHelper.INSTANCE.showInterstitialAd(this,
() -> {
startActivity(new Intent(this, LargeFileActivity.class));
finish();
......@@ -147,7 +147,7 @@ public class EndCleanJunkActivity extends AppCompatActivity {
});
binding.buttonSimilarPhotos.setOnClickListener(v->{
AdmobHelper.INSTANCE.showAppOpenAd(this,
AdmobHelper.INSTANCE.showInterstitialAd(this,
() -> {
startActivity(new Intent(this, SimilarPhotosActivity.class));
finish();
......@@ -166,7 +166,7 @@ public class EndCleanJunkActivity extends AppCompatActivity {
});
binding.buttonScreenshot.setOnClickListener(v->{
AdmobHelper.INSTANCE.showAppOpenAd(this,
AdmobHelper.INSTANCE.showInterstitialAd(this,
() -> {
startActivity(new Intent(this, ScreenShotActivity.class));
finish();
......
......@@ -151,7 +151,7 @@ public class ScreenShotActivity extends AppCompatActivity {
handler = new Handler(Looper.getMainLooper());
Intent intent = new Intent(this, EndCleanJunkActivity.class);
handler.postDelayed(() -> {
AdmobHelper.INSTANCE.showAppOpenAd(this,
AdmobHelper.INSTANCE.showInterstitialAd(this,
() -> {
binding.radarview.setSearching(false);
intent.putExtra("cleanstr", cleanSize);
......
......@@ -9,7 +9,7 @@
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="337dp"
android:layout_height="410dp">
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
......@@ -96,12 +96,12 @@
<com.tool.zxdemo.utils.NativeView
android:id="@+id/fl_ad"
android:layout_width="match_parent"
android:layout_height="150dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="10dp"
android:layout_marginTop="28dp">
<ImageView
android:src="@mipmap/gg"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</com.tool.zxdemo.utils.NativeView>
......
......@@ -9,7 +9,7 @@
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="337dp"
android:layout_height="410dp">
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
......@@ -84,7 +84,7 @@
<com.tool.zxdemo.utils.NativeView
android:id="@+id/fl_ad"
android:layout_width="match_parent"
android:layout_height="150dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="10dp"
android:layout_marginTop="31dp">
......@@ -92,7 +92,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@mipmap/gg" />
/>
</com.tool.zxdemo.utils.NativeView>
</LinearLayout>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment