Android Question DateDialog

LucaMs

Expert
Licensed User
Longtime User
I have a project in which the DateDialog appears without the calendar on the right.

Now, creating a new project, it appears. Same code to load and display:
B4X:
Sub Test2
    Dim Dd As DateDialog
    Dim DateX As Long = DateTime.DateParse("31/01/2014")
  
    Dd.Year = DateTime.GetYear(DateX)
    Dd.Month = DateTime.GetMonth(DateX)
    Dd.DayOfMonth = DateTime.GetDayOfMonth(DateX)

    Dim ret As Int
    ret = Dd.Show("Message", "Title", "OK", "Cancel", "", Null)
End Sub


Which general (global) setting can affect DateDialog?

Thanks
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…