38 lines
1.5 KiB
XML
38 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout 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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
tools:ignore="MissingConstraints">
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
android:id="@+id/appFavorite_name"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginVertical="10dp"
|
|
android:layout_weight="1"
|
|
android:gravity="left|center"
|
|
android:textSize="24sp"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:ignore="RtlHardcoded"
|
|
style="@style/TextDefaultStyle"/>
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:id="@+id/appFavorite_drag_icon"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_gravity="center"
|
|
android:layout_marginHorizontal="16dp"
|
|
android:background="@drawable/icon_favorite_order" />
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |