aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/layout/media_picker_activity.xml
blob: 04490e27273b48bd5d9498de2b564d7a91ce00c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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"
    android:id="@+id/theme_browser_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <android.support.design.widget.TabLayout
        android:id="@+id/tab_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/tab_background"
        app:tabIndicatorColor="@color/tab_indicator" />

    <org.wordpress.android.widgets.WPViewPager
        android:id="@+id/media_picker_pager"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</LinearLayout>