Images disappearing from my application using Xamarin Forms

Asked

Viewed 254 times

0

I made an application using Xamarin Forms Cross Platform, at first I only need the android version of it so I don’t care about IOS and Windows. The app is working properly when I test it on one of my phones a Xiaomi Redmi 4x, but when I test it on an Xperia Z1 or other cell phone with less processing capacity the images are disappearing. They appear and disappear as I go to other pages. In total the application has 143 images and there is no way I can change that. The application basically consists of text and images. Use Contentpages and Carouselpages. Example of one of the parts where I use image:

<ContentPage>
    <ScrollView>
        <StackLayout>
            <Image Source="Imagem1Geral.jpg" Aspect="AspectFill"/>
            <Label  Text="Posição Inicial&#x0a;"
                HorizontalTextAlignment="Center"
                FontSize="30"
                TextColor="Black"/>
        </StackLayout>
    </ScrollView>
</ContentPage>

I don’t know what to do...

1 answer

0

I’ll give you a hint of a component that I always use for images in Xamarin Forms : Ffimageloading . It is possible to use cache and optimize image loading.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.