| <?xml version="1.0" encoding="utf-8"?> |
| <!-- Copyright 2019 The Chromium Authors. All rights reserved. |
| Use of this source code is governed by a BSD-style license that can be |
| found in the LICENSE file. --> |
| |
| <LinearLayout |
| xmlns:android="http://schemas.android.com/apk/res/android" |
| android:id="@+id/payment_method_full" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:orientation="vertical" |
| android:gravity="center_vertical"> |
| |
| <LinearLayout |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:orientation="horizontal"> |
| |
| <org.chromium.ui.widget.ChromeImageView |
| android:id="@+id/credit_card_issuer_icon" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content"/> |
| |
| <TextView android:id="@+id/credit_card_number" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:layout_marginStart="12dp" |
| android:layout_marginEnd="12dp" |
| android:textAppearance="@style/TextAppearance.BlackBody"/> |
| |
| <TextView android:id="@+id/credit_card_expiration" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:ellipsize="end" |
| android:maxLines="1" |
| android:textAppearance="@style/TextAppearance.BlackBody"/> |
| </LinearLayout> |
| |
| <TextView android:id="@+id/credit_card_name" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:textAppearance="@style/TextAppearance.BlackBody"/> |
| |
| <TextView |
| android:id="@+id/incomplete_error" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:ellipsize="end" |
| android:maxLines="1" |
| android:textAppearance="@style/TextAppearance.ErrorCaption" |
| android:visibility="gone"/> |
| </LinearLayout> |