| <?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" |
| xmlns:app="http://schemas.android.com/apk/res-auto" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:orientation="vertical"> |
| |
| <!-- Third party terms and conditions. --> |
| <org.chromium.chrome.browser.autofill_assistant.payment.AssistantChoiceList |
| android:id="@+id/third_party_terms_list" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:layout_marginStart="@dimen/autofill_assistant_bottombar_horizontal_spacing" |
| android:layout_marginEnd="@dimen/autofill_assistant_bottombar_horizontal_spacing" |
| app:column_spacing="8dp" |
| app:can_add_items="false"> |
| <!-- Choices are created in code. --> |
| </org.chromium.chrome.browser.autofill_assistant.payment.AssistantChoiceList> |
| |
| <!-- Privacy notice. --> |
| <TextView |
| android:id="@+id/payment_request_3rd_party_privacy_notice" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:layout_marginTop="8dp" |
| android:layout_marginStart="@dimen/autofill_assistant_bottombar_horizontal_spacing" |
| android:layout_marginEnd="@dimen/autofill_assistant_bottombar_horizontal_spacing" |
| android:background="@drawable/autofill_assistant_lightblue_rect_bg" |
| android:padding="8dp" |
| android:text="@string/autofill_assistant_3rd_party_privacy_notice" |
| android:textAppearance="@style/TextAppearance.AssistantBlackCaption"/> |
| </LinearLayout> |