aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/layout/actionbar_add_media.xml
blob: 64885ccc66ad10c2e9118a2925bdfe3b77967ea9 (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
<?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:background="@drawable/dialog_full_holo_light"
    android:orientation="vertical" >

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingBottom="15dp"
        android:paddingLeft="20dp"
        android:paddingRight="20dp"
        android:paddingTop="15dp"
        android:text="@string/media_add_popup_title"
        android:textSize="20sp" />

    <View
        android:layout_width="match_parent"
        android:layout_height="2dp"
        android:background="@color/blue_wordpress" />

    <ListView
        android:id="@+id/actionbar_add_media_listview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:divider="@color/blue_wordpress"
        android:dividerHeight="1dp"
        android:paddingLeft="20dp"
        android:paddingRight="20dp" >
    </ListView>

</LinearLayout>