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

46 lines
2.0 KiB
XML
Raw Normal View History

<?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/. -->
<merge 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"
tools:parentTag="androidx.constraintlayout.widget.ConstraintLayout"
android:layout_width="match_parent"
android:layout_height="@dimen/library_item_height"
android:background="?android:attr/selectableItemBackground"
android:clickable="true"
android:focusable="true">
<ImageView
android:id="@+id/libraryIcon"
android:layout_width="@dimen/library_item_icon_height"
android:layout_height="@dimen/library_item_icon_height"
2019-02-13 01:34:23 +01:00
android:layout_margin="8dp"
android:layout_marginStart="16dp"
android:background="@drawable/library_icon_logins_circle_background"
android:clickable="false"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/libraryItemTitle"
android:layout_width="wrap_content"
2019-02-13 01:34:23 +01:00
android:layout_height="0dp"
android:layout_marginStart="16dp"
android:gravity="center_vertical"
android:textAppearance="@style/TextAppearance.MaterialComponents.Subtitle1"
android:clickable="false"
2019-02-13 01:34:23 +01:00
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
2019-02-13 01:34:23 +01:00
app:layout_constraintStart_toEndOf="@id/libraryIcon" />
<View
android:layout_width="0dp"
android:layout_height="1dp"
android:background="@drawable/library_separator"
android:clickable="false"
app:layout_constraintStart_toStartOf="@id/libraryItemTitle"
app:layout_constraintTop_toBottomOf="@id/libraryIcon" />
</merge>