summaryrefslogtreecommitdiffstats
path: root/res/layout/v2_fragment_pager_list.xml
blob: e33281734a17991b3689c5211f7c72bea4da02fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="match_parent"
              android:layout_height="match_parent">
    <ScrollView android:id="@android:id/list"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:gravity="center"
                android:layout_gravity="center_vertical"
                android:divider="@null"
                android:scrollbars="none"
                android:fillViewport="true"
                android:drawSelectorOnTop="false">
        <FrameLayout android:layout_width="match_parent"
                     android:layout_height="match_parent">
            <ImageView
                android:id="@+id/wallpaper"
                android:layout_width="match_parent"
                android:layout_height="@dimen/theme_preview_height"
                android:scaleType="centerCrop"
                />
            <RelativeLayout
                android:id="@+id/preview_container"
                android:layout_width="match_parent"
                android:layout_height="@dimen/theme_preview_height"
                android:orientation="vertical">
                <include layout="@layout/v2_status_bar_preview_item"/>
                <include layout="@layout/v2item_font"/>
                <include layout="@layout/v2item_icon"/>
                <include layout="@layout/v2_nav_bar_preview_item"/>
            </RelativeLayout>
        </FrameLayout>
    </ScrollView>
</LinearLayout>