OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. |
| 5 --> |
| 6 |
| 7 <!-- Dialog to display required OMA information to the user and confirm that |
| 8 the user want to proceed with the download. --> |
| 9 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 10 android:id="@+id/confirm_oma_download" |
| 11 android:layout_width="match_parent" |
| 12 android:layout_height="match_parent" |
| 13 android:stretchColumns="1"> |
| 14 |
| 15 <TableRow> |
| 16 <TextView |
| 17 android:text="@string/oma_download_name_label" |
| 18 android:gravity="start" |
| 19 android:textColor="@android:color/black" |
| 20 android:padding="3dp" /> |
| 21 <TextView |
| 22 android:id="@+id/oma_download_name" |
| 23 android:gravity="start" |
| 24 android:textColor="@android:color/black" |
| 25 android:padding="3dp" /> |
| 26 </TableRow> |
| 27 |
| 28 <TableRow> |
| 29 <TextView |
| 30 android:text="@string/oma_download_vendor_label" |
| 31 android:gravity="start" |
| 32 android:textColor="@android:color/black" |
| 33 android:padding="3dp" /> |
| 34 <TextView |
| 35 android:id="@+id/oma_download_vendor" |
| 36 android:gravity="start" |
| 37 android:textColor="@android:color/black" |
| 38 android:padding="3dp" /> |
| 39 </TableRow> |
| 40 |
| 41 <TableRow> |
| 42 <TextView |
| 43 android:text="@string/oma_download_size_label" |
| 44 android:gravity="start" |
| 45 android:textColor="@android:color/black" |
| 46 android:padding="3dp" /> |
| 47 <TextView |
| 48 android:id="@+id/oma_download_size" |
| 49 android:gravity="start" |
| 50 android:textColor="@android:color/black" |
| 51 android:padding="3dp" /> |
| 52 </TableRow> |
| 53 |
| 54 |
| 55 <TableRow> |
| 56 <TextView |
| 57 android:text="@string/oma_download_type_label" |
| 58 android:gravity="start" |
| 59 android:textColor="@android:color/black" |
| 60 android:padding="3dp" /> |
| 61 <TextView |
| 62 android:id="@+id/oma_download_type" |
| 63 android:gravity="start" |
| 64 android:textColor="@android:color/black" |
| 65 android:padding="3dp" /> |
| 66 </TableRow> |
| 67 |
| 68 <TableRow> |
| 69 <TextView |
| 70 android:text="@string/oma_download_description_label" |
| 71 android:gravity="start" |
| 72 android:textColor="@android:color/black" |
| 73 android:padding="3dip" /> |
| 74 <TextView |
| 75 android:id="@+id/oma_download_description" |
| 76 android:gravity="start" |
| 77 android:textColor="@android:color/black" |
| 78 android:padding="3dip" /> |
| 79 </TableRow> |
| 80 </TableLayout> |
OLD | NEW |