Android Question Calendar not show complete

scsjc

Well-Known Member
Licensed User
Longtime User
Hello,
Im use a calendar ....

B4X:
            Dim Dd As DateDialog
            Dd.DateTicks = codigo.ticks_date_from_mysql(registro_time_in)
            Dd.ShowCalendar = True
            DateTime.DateFormat = "yyyy-MM-dd"
            Dim sfa As Object = Dd.ShowASYNC("", t.t("Seleccione Fecha inicial"), t.t("ACEPTAR"), t.t("CANCELAR"), "", Null, True)
            Wait For (sfa) Dialog_Result(RESULT As Int)
            If RESULT = DialogResponse.POSITIVE Then



and work perfectly,
but one customer tellme dont show complet calendar... (i tell change font size on system but not fix)
29b252e6-bf7f-4347-be09-295c9b80b0c0.jpg



The version android is:
9ed734ee-8f01-44bd-9fa1-de34479099fd.jpg
 

scsjc

Well-Known Member
Licensed User
Longtime User
As this is a system dialog I don't think that you can do much about it. You can switch to AnotherDatePicker.
I find the problem.....
in android preferences the customer change the size screen...

in settings: - Screen content size: as large as possible
;)
 
Upvote 0
Top