aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/layout/media_browser_activity.xml
blob: 60475f2591dbc53f657d82babbe3a8ed9eb68649 (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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <include
        layout="@layout/toolbar"
        android:id="@+id/toolbar" />

    <LinearLayout
        android:id="@+id/media_browser_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <fragment
            android:id="@+id/mediaGridFragment"
            android:name="org.wordpress.android.ui.media.MediaGridFragment"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />

        <fragment
            android:id="@+id/mediaAddFragment"
            android:name="org.wordpress.android.ui.media.MediaAddFragment"
            android:layout_width="0dp"
            android:layout_height="0dp" />
    </LinearLayout>

</LinearLayout>