Skip to content Skip to sidebar Skip to footer

Curl Animation(like Open Page Of Book) In Android

I am developing an app which include many images(hd) and these images will shown in next/previous by swapping screen left/right respectively. Changing of images should be like open

Solution 1:

can you add below option in manifest. In my case this help me when I have large bitmap and OutOfMemoryError

    android:hardwareAccelerated="true"
    android:largeHeap="true"
    android:icon="@drawable/ic_launcher_android"
    android:label="@string/app_name"
    android:theme="@style/AppTheme"

Post a Comment for "Curl Animation(like Open Page Of Book) In Android"