Implement MoveFileLocal (with creating a snapshot).
[chromium-blink-merge.git] / chrome / android / java / res / layout / share_dialog_item.xml
blob84960f61904b1ef9e87417ecb310605ec9a1076f
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
4      Use of this source code is governed by a BSD-style license that can be
5      found in the LICENSE file.
6 -->
7 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
8     android:layout_width="match_parent"
9     android:layout_height="wrap_content"
10     android:background="?attr/selectableItemBackground"
11     android:orientation="horizontal" >
12     <ImageView android:id="@+id/icon"
13         android:layout_width="48dp"
14         android:layout_height="48dp"
15         android:layout_marginStart="12dp"
16         android:padding="4dp"
17         android:scaleType="fitCenter"
18         android:contentDescription="@null" />
19     <TextView android:id="@+id/text"
20         android:layout_width="wrap_content"
21         android:layout_height="48dp"
22         android:gravity="start|center_vertical"
23         android:layout_marginStart="12dp"
24         android:maxLines="2"
25         android:textAppearance="?android:attr/textAppearanceMedium" />
26 </LinearLayout>