I want to create listview inside listview. I tried below code, which is not working in Android, same code working perfectly in iOS
Listview inside a Listview is not a supported option. Listviews are designed to be the only root control on a page, mainly due to sizing and scrolling concerns.
Also the complexity of the page might cause poor performance.
Ideally I would suggest reworking your layout so that the repeated information is on another page. However if you want to continue on with this approach you should look at the RepeaterView in XLabs. Its basically an enhanced StackLayout.