summaryrefslogtreecommitdiff
path: root/main/src/ui/res/layout/file_dialog_row.xml
blob: e2c1e0dee8cd5957b18e189bf2c63dcfff2718df (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
<?xml version="1.0" encoding="utf-8"?>
<!--
  ~ Copyright (c) 2012-2016 Arne Schwabe
  ~ Distributed under the GNU GPL v2 with additional terms. For full terms see the file doc/LICENSE.txt
  -->

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:orientation="horizontal"
    android:layout_height="wrap_content">

    <ImageView
        android:id="@+id/fdrowimage"
        android:layout_width="wrap_content"
        android:layout_height="35dp"
        tools:background="@drawable/ic_root_folder_am"
        android:paddingLeft="3dp"
        android:paddingRight="5dp" android:contentDescription="@string/file_icon"/>

    <TextView
        android:id="@+id/fdrowtext"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        android:layout_gravity="center_vertical"
        tools:text="foo, die datei,"
        android:textAppearance="?android:attr/textAppearanceMedium" />


</LinearLayout>