OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 <?xml version="1.0" encoding="utf-8"?> |
| 5 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 6 android:layout_width="match_parent" |
| 7 android:layout_height="wrap_content" > |
| 8 <ImageView |
| 9 android:id="@+id/cc_icon" |
| 10 android:layout_width="44dp" |
| 11 android:layout_height="44dp" |
| 12 android:layout_marginLeft="5dp" |
| 13 android:layout_marginRight="5dp"/> |
| 14 <TextView |
| 15 android:id="@+id/cc_number" |
| 16 android:layout_toRightOf="@id/cc_icon" |
| 17 android:layout_width="wrap_content" |
| 18 android:layout_height="wrap_content" |
| 19 android:textStyle="bold" |
| 20 android:textSize="14sp"/> |
| 21 <TextView |
| 22 android:id="@+id/cc_info" |
| 23 android:layout_below="@id/cc_number" |
| 24 android:layout_toRightOf="@id/cc_icon" |
| 25 android:layout_width="wrap_content" |
| 26 android:layout_height="wrap_content" |
| 27 android:textSize="12sp"/> |
| 28 </RelativeLayout> |
OLD | NEW |