Hello,
Welcome to our Microsoft Q&A platform!
Hi,njsokalski. The VS doesn't provide the layout preview function for a list's items in Xamarin.Android. If you want to get what the item will be like when debugging, you could check the preview of item view layout file which is used to inflate the items for the recyclerView in data Adapter class.
public class CustomDataAdapter : RecyclerView.Adapter
{
...
public override RecyclerView.ViewHolder OnCreateViewHolder(ViewGroup parent, int viewType)
{
View itemView = LayoutInflater.From(parent.Context).Inflate(Resource.Layout.itemView, parent, false);
...
}
}
Best Regards,
Jarvan Zhang
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.