Ich habe ein Intro mit 3 Seiten. Ich benutze dieses Tutorial, ein Swipe-Seite Intro zu realisieren: https://thepseudocoder.wordpress.com/2011/10/05/android-page-swiping-using-viewpager/android viewpager lags mit Bild
Dies funktioniert gut, ABER:
Meine erste Seite hat ein Bild und einen Text. Meine zweite und dritte Seite haben nur Text ohne Bild.
Wenn ich von Seite 1 zu Seite 2 oder zurück von 2 nach 1 wische, wird die Folienanimation verzögert.
Nun fand ich eine „Lösung“ wenn ich von Seite 1 = keine Verzögerung mit Bild mein Bild entfernen =
Meine erste Seite sieht wie folgt aus hinken:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/Page1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/txt"
android:id="@+id/txt" />
<ImageView
android:id="@+id/imageView3"
android:layout_gravity="center"
android:background="@drawable/image"
android:layout_width="183dp"
android:layout_height="281dp"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true" />
</RelativeLayout>
Wie groß sind Ihre Bilder? – Gauthier
Originalgröße: 640 x 987 px – Stack108
und was nun? :( – Stack108