Commit 98ecdd62 authored by wanglei's avatar wanglei

...底部广告

parent b5f42aee
......@@ -25,8 +25,9 @@
android:supportsRtl="true"
android:theme="@style/Theme.DataRecovery"
tools:targetApi="34">
<activity
android:name=".activity.vip.VipActivity"
android:exported="false" />
<activity
android:name=".activity.SplashActivity"
android:exported="true"
......@@ -191,9 +192,7 @@
<receiver
android:name=".fcm.CloseNotificationReceiver"
android:exported="false" />
<!-- 添加以下接收器 -->
android:exported="false" /> <!-- 添加以下接收器 -->
<!-- 注册广播 -->
<receiver
android:name=".fcm.FcmReceiver"
......
......@@ -16,6 +16,7 @@ import com.base.filerecoveryrecyclebin.activity.privacyspace.PrivacySpaceActivit
import com.base.filerecoveryrecyclebin.activity.recovery.FileScanResultActivity
import com.base.filerecoveryrecyclebin.activity.repeat.RepeatActivity
import com.base.filerecoveryrecyclebin.activity.screenshot.ScreenShotActivity
import com.base.filerecoveryrecyclebin.activity.vip.VipActivity
import com.base.filerecoveryrecyclebin.ads.AdmobMaxHelper
import com.base.filerecoveryrecyclebin.ads.admob.AdmobInterstitialUtils
import com.base.filerecoveryrecyclebin.ads.admob.AdmobNativeUtils
......
package com.base.filerecoveryrecyclebin.activity.vip
import android.graphics.Color
import androidx.core.view.updatePadding
import com.base.filerecoveryrecyclebin.databinding.ActivityVipBinding
import com.base.filerecoveryrecyclebin.help.BaseActivity
import com.base.filerecoveryrecyclebin.utils.BarUtils
class VipActivity : BaseActivity<ActivityVipBinding>() {
override val binding: ActivityVipBinding by lazy {
ActivityVipBinding.inflate(layoutInflater)
}
override fun initView() {
BarUtils.setStatusBarLightMode(this, true)
BarUtils.setStatusBarColor(this, Color.WHITE)
binding.root.updatePadding(top = BarUtils.getStatusBarHeight())
}
override fun initListener() {
super.initListener()
binding.cardWeek.setOnClickListener { }
binding.cardMonth.setOnClickListener { }
binding.cardYear.setOnClickListener { }
}
}
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#FF1F1F" />
<corners android:radius="5dp" />
</shape>
\ No newline at end of file
This diff is collapsed.
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