TitleCustom webview is scrolled slowly or back to the start point.2022-07-25 19:16:29
Writer

With Unity 2017.4 and later version, android:hardwareAccelerated="false" of the Activity is fixed so that the scroll function on custom webview may have problems. To resolve this issue, execute the following [Method 1].

[Method 1]

  1. Export your project from Android Studio.
  2. Add android:hardwareAccelerated="true" to the MainActivity of AndroidManifest.xml file.
  3. Build your app.

When you use Unity 2018 and later version, you can build with IPostGenerateGradleAndroidProject class. To resolve this problem with Unity 2018 and later, follow the [Method 2].

[Method 2]

  1. Change to android:hardwareAccelerated="true".
  2. Add the attached file to the path, Assets/Editor/.
  3. Build your app.

Attached file: ModifyUnityAndroidAppManifestSample.cs