Statistics
| Branch: | Tag: | Revision:

securesmartcam / app / src / main / res / layout / album_external_item.xml @ 41590feb

History | View | Annotate | Download (1.5 KB)

1
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
android:layout_width="match_parent"
4
android:layout_height="wrap_content"
5
android:orientation="vertical"
6
android:padding="10dp">
7

    
8
    <org.witness.obscuracam.ui.views.SquareFrameLayout
9
        android:layout_width="match_parent"
10
        android:layout_height="match_parent">
11
        <TextView xmlns:android="http://schemas.android.com/apk/res/android"
12
            android:layout_width="match_parent"
13
            android:layout_height="match_parent"
14
            android:layout_weight="1"
15
            android:padding="10dp"
16
            android:gravity="center"
17
            android:background="@drawable/camera_frame"
18
            android:text="@string/action_pick_external"
19
            android:textAppearance="@style/TextAppearanceNormal"
20
            android:textColor="@color/colorPrimary"
21
            />
22
    </org.witness.obscuracam.ui.views.SquareFrameLayout>
23

    
24
<TextView
25
    android:layout_width="match_parent"
26
    android:layout_height="wrap_content"
27
    android:textAppearance="@style/TextAppearanceNormal"
28
    android:text="@string/action_pick_external_album_name"
29
    android:textColor="@android:color/white"
30
    android:id="@+id/tvAlbumName" />
31

    
32
<TextView
33
    android:layout_width="match_parent"
34
    android:layout_height="wrap_content"
35
    android:textAppearance="@style/TextAppearanceSmall"
36
    android:text=""
37
    android:id="@+id/tvAlbumCount"
38
    android:textColor="@android:color/white"
39
    />
40

    
41
</LinearLayout>