mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-07-20 03:28:58 +00:00
37 lines
1.4 KiB
XML
37 lines
1.4 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/. -->
|
|
|
|
<org.mozilla.gecko.widget.SquaredRelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<ImageView
|
|
android:id="@+id/background"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="centerCrop" />
|
|
|
|
<ImageView
|
|
android:id="@+id/image"
|
|
android:layout_width="50dp"
|
|
android:layout_height="50dp"
|
|
android:scaleType="centerInside"
|
|
android:layout_centerInParent="true" />
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:singleLine="true"
|
|
android:ellipsize="end"
|
|
android:textColor="@android:color/white"
|
|
android:layout_alignParentBottom="true"
|
|
android:textSize="12sp"
|
|
android:padding="8dp"
|
|
android:background="@color/panel_icon_item_title_background"
|
|
android:layout_gravity="center_horizontal"/>
|
|
|
|
</org.mozilla.gecko.widget.SquaredRelativeLayout>
|