I have been looking for DIP information for the DrawText method against the ImageView. I am currently designing and debugging on the device itself.
DipToCurrent doesn't seem to apply for that device. Even IntToDIP methods do not work either. Is this device just special, or unique in the Android world? Basically, if you place something as simple as:
All you see is the bottom third of the text in the imageview. You get the same results with the following lines of code, no matter what you do.
It is looking more and more that this particular tablet is just ... "unique". Or perhaps not compatible with Basic4Android?
DipToCurrent doesn't seem to apply for that device. Even IntToDIP methods do not work either. Is this device just special, or unique in the Android world? Basically, if you place something as simple as:
B4X:
c.DrawText("Card #" & tag, DipToCurrent(10), DipToCurrent(10), Typeface.DEFAULT, 24, Colors.White, "LEFT")
B4X:
c.DrawText("Card #" & tag, 0, 0, Typeface.DEFAULT, 24, Colors.White, "LEFT")
B4X:
c.DrawText("Card #" & tag, 0dip, 0dip, Typeface.DEFAULT, 24, Colors.White, "LEFT")
It is looking more and more that this particular tablet is just ... "unique". Or perhaps not compatible with Basic4Android?