summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/item_description_fragment.xml
blob: 3766cf805bfed11d65c433a00bfb0e0134c305b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8"?>
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="false">

    <de.danoeh.antennapod.view.NestedScrollableHost
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <de.danoeh.antennapod.view.ShownotesWebView
            android:id="@+id/webview"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

    </de.danoeh.antennapod.view.NestedScrollableHost>

</androidx.core.widget.NestedScrollView>