I am using a MacBook Pro that does not have hardward acceleration for graphics, so maybe that's the whole problem, but I hope not.
When I use VisualStudio to run a Xamarin.Forms app on the iPhone simulator, it works fine.
When I run it on the Android simulator (right now the Pixel, but it's the same for all of them), it works OK but none of the images show up.
How can I get the images to show up on Android?
Here's an example of code where it happens (you'll have to change the image path for it to work):
<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="UdemyHelloWorldOne.AbsoluteLayoutExercise2">
<AbsoluteLayout>
<Image Source="/Users/jesseonbookofe/Documents/Xamarin/UdemyHelloWorldOne/UdemyHelloWorldOne/absolutelayoutexercise2-image-flower.jpg"
Aspect="AspectFill" AbsoluteLayout.LayoutBounds="0, 0, 1, 1"
AbsoluteLayout.LayoutFlags="All" />
<Label Text="Relax" FontSize="30" TextColor="White"
AbsoluteLayout.LayoutFlags="SizeProportional, XProportional"
AbsoluteLayout.LayoutBounds="0.5,20,1,0.1"
HorizontalOptions="Center"/>
<BoxView BackgroundColor="Black" Opacity="0.5"
AbsoluteLayout.LayoutFlags="PositionProportional, WidthProportional"
AbsoluteLayout.LayoutBounds="0,1,1,100"/>
<StackLayout AbsoluteLayout.LayoutBounds="0,1,1,100" Padding="30,0"
Orientation="Horizontal" VerticalOptions="Center"
AbsoluteLayout.LayoutFlags="PositionProportional, WidthProportional">
<Label Text="Profile" FontSize="15" TextColor="White"/>
<Label Text="Meditate" FontSize="15" TextColor="White"
HorizontalOptions="CenterAndExpand"/>
<Label Text="Themes" FontSize="15" TextColor="White"/>
</StackLayout>
</AbsoluteLayout>
</ContentPage>