[go: nahoru, domu]

blob: 87d507907c8ebdcbba5fdd44608681bde771a3c9 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2024 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
style="@style/PreferenceLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<org.chromium.components.browser_ui.widget.MaterialCardViewNoShadow
style="@style/MaterialCardStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/identity_error_card">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:baselineAligned="false"
android:gravity="top|start"
android:orientation="horizontal">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/accessibility_account_management_row_account_error"
android:id="@+id/identity_error_card_alert_icon"
android:scaleType="fitCenter"
android:src="@drawable/ic_error"/>
<org.chromium.ui.widget.TextViewWithLeading
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginBottom="12dp"
android:layout_marginStart="12dp"
android:layout_marginTop="2dp"
android:layout_weight="1"
android:gravity="start"
android:id="@+id/identity_error_card_error_description"
android:includeFontPadding="false"
android:textAppearance="@style/TextAppearance.TextMedium.Primary"
app:leading="@dimen/text_size_medium_leading"/>
</LinearLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<org.chromium.ui.widget.ButtonCompat
style="@style/FilledButton.Flat"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:ellipsize="end"
android:id="@+id/identity_error_card_button"
android:singleLine="true"/>
</RelativeLayout>
</LinearLayout>
</org.chromium.components.browser_ui.widget.MaterialCardViewNoShadow>
</FrameLayout>