I am trying to implement splash screen without any extra activities, using theme call in the manifest file's <activity/>
tag.
In my styles.xml
<style name="splashTheme" parent="AppTheme">
<item name="android:windowBackground">@drawable/splash</item>
</style>
here the drawable file splash.xml uses layer-list
How do I add text to this layer list?