Android Question another date picker ERROR: Unexpected event (missing RaiseSynchronousEvents): datefield_textchanged

Shripal Dalal

Member
Licensed User
Longtime User
This is not an error. It is a warning. You can ignore it. It is related to the debugger.
okay, all right. got it.

but there is another error related to this date picker.

I have 3 tabs inside tabhost, and that tabhost is inside scrollview.(i used scrollview because keyboard was overlapping input section. text fields were getting hidden behind keyboard.)
In 1st tab i have put this date picker and i am getting this following error and my app crashes.
ERROR: java.lang.RuntimeException: RUN_METHOD_WITH_SYNC expected


following is my code.


scrollview.Initialize(800dip)
Activity.AddView(scrollview, 0, 60dip, 98%x, 95%y)
scrollview.Panel.LoadLayout("TabHostLayout")
Dim bmp1, bmp2,bmp3 As Bitmap
bmp1 = LoadBitmap(File.DirAssets, "cd.png")
bmp2 = LoadBitmap(File.DirAssets, "bd.png")
bmp3 = LoadBitmap(File.DirAssets, "mrp.png")
TabHostEntry.Color=Colors.White
TabHostEntry.Height= 100%y-50dip
TabHostEntry.Width= 100%x
TabHostEntry.AddTabWithIcon("Customer Details", bmp1,bmp2, "CustTabLayout") 'load the layout file of each page
TabHostEntry.AddTabWithIcon("Barcode Details",bmp2,bmp3, "ItemLayout")
TabHostEntry.AddTabWithIcon("Billing & Summary",bmp3,bmp1, "MrpTabLayout")
 
Upvote 0
Cookies are required to use this site. You must accept them to continue using the site. Learn more…