aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/layout/file_list_entry_add.xml
blob: e5eb4c44f84d1329b36aa9bfb0fcb22716d8c7ba (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
<?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="wrap_content"
    android:minHeight="16dp"
    android:orientation="horizontal"
    android:singleLine="true">

    <Button
        android:id="@+id/file_list_entry_add"
        android:paddingLeft="8dp"
        android:paddingRight="8dp"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minHeight="?android:attr/listPreferredItemHeight"
        android:layout_gravity="center"
        android:text="@string/btn_add_files"
        style="?android:attr/borderlessButtonStyle"
        android:drawableLeft="@drawable/ic_folder_grey_24dp"
        android:drawablePadding="16dp"
        android:gravity="left|center_vertical" />

</LinearLayout>