hi
I have an activity with a ImageView. a black panel that covers the image of Activity. in the panel there is a ImageView. manage the visibility of the panel with buttons. if I use the app on galaxy s with gingerbread 2.3.6 no problem . but when I make the panel visible on galaxy s 2 with icecream 4.0.3 the panel does not cover the image of the activity. I can not understand why.
If you have a complete sample that will run and show this or if you want to post your code, I will try it on the ASUS ICS 4.0.3 and see what I can find/correct. If you do post your code or a sample, please post which version of B4A you are using as well.
This app works fine on the ASUS Transformer 10.1" Running ICS 4.0.3. It may be that your device has a forked version and an issue. All screens display as they should and completely cover the other.
Thanks Margret, I'll try a few tricks to mask the problem.
I take advantage of your kindness. I posted a video in the file list DirAssets.
I have to load it from DirRootExternal to view it. When I deploy the app files do not go directly into DirRootExternal. how do I?
If File.ExternalReadable Then
If File.Exists(File.DirRootExternal, "myvideo.mp4") = False Then
If File.ExternalWritable Then
File.Copy(File.DirAssets, "myvideo.mp4", File.DirRootExternal, "myvideo.mp4")
End If
End If
End If