1 <?xml version="1.0" encoding="utf-8"?>
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/.
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="match_parent"
12 android:paddingTop="10dp"
13 android:orientation="vertical" >
16 android:id="@+id/grid_item_image"
17 tools:src="@drawable/folder"
18 android:layout_width="100dp"
19 android:layout_height="100dp"
20 android:scaleType="fitStart"
21 android:layout_gravity="center"
22 android:contentDescription="@string/file_icon_desc" >
26 android:id="@+id/grid_item_label"
27 tools:text="file or dirname"
28 android:layout_width="wrap_content"
29 android:layout_height="wrap_content"
30 android:paddingLeft="10dp"
31 android:paddingRight="10dp"
32 android:paddingTop="10dp"
33 android:layout_gravity="center"
34 android:textSize="15sp"
35 android:textStyle="bold"
36 android:textColor="@android:color/secondary_text_light"