Skip to main content

Posts

Showing posts with the label dark mode calendar

Featured post

Admob App Open Ads Integration in Android | How to integrate App Open Ads in Android Project?

  Hi, Gooogle Admob recently launched App Open Ads Ad Type with beta version. This ad will show when user open your app. it is like splash screen ad. but this is official ad. so chances of policy violation is less. For this ad, you can use interstitial ad unit id. Follow the below steps for integration app open ads into your android project. Step 1,   integrate admob library and android lifecycle library in app/build.gradle file.      implementation 'com.google.android.gms:play-services-ads:19.4.0'     def lifecycle_version = "2.0.0"     implementation "androidx.lifecycle:lifecycle-extensions:$lifecycle_version"     implementation "androidx.lifecycle:lifecycle-runtime:$lifecycle_version"     annotationProcessor "androidx.lifecycle:lifecycle-compiler:$lifecycle_version" Step 2,  after integrate admob library and andorid lifecycle library. create  MyApplication.java class in default package where your mainacitvity. Here is the source code

Calendar Dark Mode | How to apply dark theme on calendar app in android phone?

  Activate Dark Theme on Calendar. Follow below steps. Step 1,   Open calendar app and then click on top-left corner menu button. Step 2, Now menu list open and have Settings options. Click on settings. Step 3,  Now new settings page is open and have  General option. Click on General. Step 4, Now swipe down and have Theme option and yet selected Light. For change, click on Theme . Step 5, Now, you can see three option. Light, Dark   and Set by Battery Saver. So for making dark. Click on dark option. Now, Your app is in dark Theme. Enjoy Dark Theme .