mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-15 23:00:31 +05:30
32 lines
1.4 KiB
XML
32 lines
1.4 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"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_margin="8dp"
|
||
|
android:layout_marginBottom="16dp"
|
||
|
android:background="?android:attr/selectableItemBackground">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/history_text"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginStart="8dp"
|
||
|
android:text=""
|
||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
app:layout_constraintEnd_toStartOf="@id/delete_history"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent" />
|
||
|
|
||
|
|
||
|
<com.google.android.material.imageview.ShapeableImageView
|
||
|
android:id="@+id/delete_history"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="?android:attr/selectableItemBackground"
|
||
|
android:padding="8dp"
|
||
|
android:src="@drawable/ic_close2"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent"
|
||
|
app:shapeAppearanceOverlay="@style/roundedImageViewRounded" />
|
||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|