| <?xml version="1.0" encoding="utf-8"?> |
| <!-- |
| Copyright 2023 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" |
| android:id="@+id/card" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" |
| android:orientation="vertical" |
| android:gravity="center" |
| android:padding="12dp" |
| android:background="@macro/default_bg_color"> |
| |
| <ImageView |
| android:id="@+id/favicon" |
| android:layout_width="24dp" |
| android:layout_height="24dp" |
| android:src="@drawable/ic_globe_24dp" |
| android:scaleType="fitCenter" |
| android:importantForAccessibility="no" /> |
| |
| <TextView |
| android:id="@+id/title" |
| style="@style/TextAppearance.TextLarge.Primary" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:maxLines="1" |
| android:ellipsize="end" /> |
| |
| <TextView |
| android:id="@+id/url" |
| style="@style/TextAppearance.TextSmall.Primary" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:maxLines="1" |
| android:ellipsize="start" /> |
| </LinearLayout> |