After investigation, it seems that using the GridView in the OrganizationPage affects the ListView in the ProjectItemDetailsPage w/o any reason related to existing code (they do not share anything in common except the fact that they both inherit from ListViewBase). The workAround is to replace the ListView to a GridViewonly for Android in this particular page.
This PR fixes the issue on Android that was introduced by implementing the usage of the
GridView
in this PR https://github.com/nventive/Uado/pull/89 .After investigation, it seems that using the
GridView
in the OrganizationPage affects theListView
in the ProjectItemDetailsPage w/o any reason related to existing code (they do not share anything in common except the fact that they both inherit fromListViewBase
). The workAround is to replace theListView
to aGridView
only for Android in this particular page.