1
0
Fork 0
fenix/app/src/main/res/layout/top_site_item.xml

30 lines
1.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/top_site_item"
android:layout_width="64dp"
android:layout_height="wrap_content"
android:padding="8dp"
android:orientation="vertical">
<ImageView
android:id="@+id/favicon_image"
style="@style/Mozac.Widgets.Favicon"
android:layout_gravity="center"
android:importantForAccessibility="no" />
<TextView
android:id="@+id/top_site_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:singleLine="true"
android:textColor="@color/top_site_title_text"
android:textSize="10sp"
android:layout_marginTop="8dp" />
</LinearLayout>