| <?xml version="1.0" encoding="utf-8"?> |
| <!-- |
| Copyright 2020 The Chromium Authors |
| 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" |
| xmlns:app="http://schemas.android.com/apk/res-auto" |
| android:id="@+id/cc_details" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:minHeight="30dp" |
| android:layout_marginBottom="3dp" |
| android:orientation="horizontal" |
| android:gravity="center_vertical" > |
| |
| <ImageView |
| android:id="@+id/google_pay_logo" |
| app:srcCompat="@drawable/google_pay" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:minHeight="24dp" |
| android:importantForAccessibility="no" /> |
| |
| <ImageView |
| android:id="@+id/message_divider" |
| android:background="@drawable/divider_line_bg" |
| android:importantForAccessibility="no" |
| android:layout_height="16dp" |
| android:layout_width="1dp" |
| android:layout_marginStart="16dp" |
| android:layout_marginEnd="16dp" /> |
| |
| <TextView |
| android:id="@+id/cc_details_masked" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:minHeight="24dp" |
| android:textAppearance="@style/TextAppearance.TextLarge.Primary" /> |
| </LinearLayout> |