Curl animation(like open page of book) in android

前端 未结 1 1080
孤街浪徒
孤街浪徒 2021-02-04 20:19

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 <

1条回答
  •  别那么骄傲
    2021-02-04 20:54

    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"
    

    0 讨论(0)
提交回复
热议问题