I have a TotalCross project and when I generate an apk my program gets the space that is below the top bar of my android device and I would like the project to be below this top bar
I have a TotalCross project and when I generate an apk my program gets the space that is below the top bar of my android device and I would like the project to be below this top bar
For those of you who have the same problem as myself, I have been able to find the solution, and from what I have been informed in the next TotalCross updates, this problem will be corrected, to solve this basically create this variable: "private int DPTOP = (int) Settings.screenDensity * 24); " out of methods and when you position the container or some component that will be at the top of your screen, where you would normally put TOP, put the variable DPTOP, and so it will skip the correct space of the top bar of the cell. >