Thanks Erel for this tip.
The main problem I see now is, that there is a flickering of each activity. On all Samsungs (S3, S6 etc.) there is no flickering at all!!!
But on my other smartphones (i. E. Oppo Reno 2Z) there is a deletion of the complete activity screen after the command "StartActivity(activityname)". There is a redrawing of the activity with black color first, then in the CREATE method the loading the layout for the current activity (layout created with the B4A designer).
The app logo which is displayed on each activity (via layout) is then redrawed every time I switch the activity.
Good news:
The black screen redraw problem was eliminated by using the manifest code above - by using the gradient theme. So far, so good.
Therefore I thought, I could also aliminate the redrawing issue of the logo image by creating and positioning a resource image file via manifest file (similiar the gradient resource above).
I also tried to use an RES/ANIM/xml file (i. e. slide_in_left.xml):
<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromXDelta="100%p" android:toXDelta="0"
android:duration="@android:integer/config_shortAnimTime"/>
But I dont want such an animation movement on the screen.
I want to have the same effect as on my Samsung devices: Simple show the next activity - without any animations, redrawing etc. I hate them!
I looked many times the complete forum here, and I could find a lot of similiar problem the users have - regarding this "flickering" or "black screen" issue.
But no solution helped my here in my case.
So, Erel, what could I do? Whats wrong here?
On Oppo I have Android 10, on Samsung S6 there is Android 7.
Many regards
ARTsoft