1<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4**
5** Copyright 2010, The Android Open Source Project
6**
7** Licensed under the Apache License, Version 2.0 (the "License");
8** you may not use this file except in compliance with the License.
9** You may obtain a copy of the License at
10**
11**     http://www.apache.org/licenses/LICENSE-2.0
12**
13** Unless required by applicable law or agreed to in writing, software
14** distributed under the License is distributed on an "AS IS" BASIS,
15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16** See the License for the specific language governing permissions and
17** limitations under the License.
18*/
19-->
20
21<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
22    android:layout_width="fill_parent"
23    android:theme="@android:style/Theme.DeviceDefault.DayNight"
24    android:layout_height="wrap_content">
25
26    <ImageView android:id="@+id/transfer_icon"
27        android:layout_width="@android:dimen/app_icon_size"
28        android:layout_height="@android:dimen/app_icon_size"
29        android:layout_alignParentTop="true"
30        android:layout_alignParentStart="true"
31        android:contentDescription ="@string/bluetooth_map_settings_app_icon"
32        android:tint="?android:attr/colorControlNormal"
33        android:scaleType="center"
34    />
35
36    <TextView android:id="@+id/transfer_title"
37        android:layout_width="wrap_content"
38        android:layout_height="wrap_content"
39        android:maxLines="1"
40        android:layout_alignParentTop="true"
41        android:layout_toEndOf="@id/transfer_icon"
42        android:textAppearance="?android:attr/textAppearanceMedium"
43    />
44
45    <TextView android:id="@+id/targetdevice"
46        android:layout_width="wrap_content"
47        android:layout_height="wrap_content"
48        android:layout_toEndOf="@id/transfer_icon"
49        android:layout_below="@id/transfer_title"
50        android:maxLines="1"
51        android:textAppearance="?android:attr/textAppearanceSmall"
52    />
53
54    <TextView android:id="@+id/complete_date"
55        android:layout_width="wrap_content"
56        android:layout_height="wrap_content"
57        android:maxLines="1"
58        android:textAppearance="?android:attr/textAppearanceSmall"
59        android:layout_below="@id/targetdevice"
60        android:layout_alignParentEnd="true"
61        android:paddingStart="10dip"
62        android:visibility="gone"
63    />
64
65    <TextView android:id="@+id/complete_text"
66        android:layout_width="wrap_content"
67        android:layout_height="wrap_content"
68        android:layout_below="@id/targetdevice"
69        android:layout_toEndOf="@id/transfer_icon"
70        android:layout_toStartOf="@id/complete_date"
71        android:textDirection="locale"
72        android:textAppearance="?android:attr/textAppearanceSmall"
73        android:visibility="gone"
74    />
75</RelativeLayout>
76
77