Version 6.1.4.1, tag libreoffice-6.1.4.1
[LibreOffice.git] / android / source / res / layout / file_explorer_grid_item.xml
blobe64fdc23a6a72b9fa54ef8e409bd3f440334fc39
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3  This file is part of the LibreOffice project.
4  This Source Code Form is subject to the terms of the Mozilla Public
5  License, v. 2.0. If a copy of the MPL was not distributed with this
6  file, You can obtain one at http://mozilla.org/MPL/2.0/.
7  -->
8 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
9     xmlns:tools="http://schemas.android.com/tools"
10     android:layout_width="match_parent"
11     android:layout_height="wrap_content"
12     android:paddingTop="4dp"
13     android:paddingBottom="4dp"
14     android:orientation="vertical" >
16     <ImageView
17         android:id="@+id/file_item_icon"
18         tools:src="@drawable/ic_folder_black_24dp"
19         tools:tint="@color/text_color_secondary"
20         android:layout_width="100dp"
21         android:layout_height="100dp"
22         android:scaleType="fitStart"
23         android:layout_gravity="center"
24         android:contentDescription="@string/file_icon_desc" >
25     </ImageView>
27     <TextView
28         android:id="@+id/file_item_name"
29         tools:text="file or dirname"
30         android:layout_width="wrap_content"
31         android:layout_height="wrap_content"
32         android:paddingLeft="10dp"
33         android:paddingRight="10dp"
34         android:paddingTop="10dp"
35         android:layout_gravity="center"
36         android:textSize="15sp"
37         android:textStyle="bold"
38         android:textColor="@android:color/secondary_text_light"
39         android:maxLines="2">
40     </TextView>
42 </LinearLayout>