Hallo,
ich habe folgenden Code:
content_main.xml
Code
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="de.ubik.kalender.MainActivity"
tools:showIn="@layout/activity_main"
android:orientation="vertical">
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabMode="fixed"
app:tabGravity="fill"
app:tabBackground="@color/tabBackground"
app:tabIndicatorColor="#000000"
/>
<fr.chaltiel.doublefragmentviewpager.pager.DoubleViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="net.voidynullness.android.tabitytabs.TabLayoutActivity"
android:background="#FFFFFF">
</fr.chaltiel.doublefragmentviewpager.pager.DoubleViewPager>
</LinearLayout>
Alles anzeigen
Ich benutze den DoubleFragmentViewPager von dieser Seite: https://github.com/DanChaltiel/DoubleFragmentViewpager
Läuft auch alles gut, bis auf eins. Wenn ich das folgende Fragment habe:
Code
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView android:id="@+id/scrollview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:fillViewport="true" >
<LinearLayout
android:id="@+id/linearlayout_timeline"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
Alles anzeigen
Hier fülle ich das LinearLayout dynamisch mit Inhalt.
Ich habe das Problem, dass ich nur scrollen kann, wenn ich im Portraitmodus bin. Wenn ich meinen Bildschirm drehe und im Landschaftsmodus bin, funktioniert das Scrollen nicht.Hat jemand eine Idee, warum?