You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
2.3 KiB
59 lines
2.3 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:padding="16dp">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_name"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:singleLine="true"
|
|
app:layout_constraintRight_toLeftOf="@+id/iv_download"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintLeft_toLeftOf="parent" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_author"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:singleLine="true"
|
|
app:layout_constraintRight_toLeftOf="@+id/iv_download"
|
|
app:layout_constraintTop_toBottomOf="@+id/tv_name"
|
|
app:layout_constraintLeft_toLeftOf="parent" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_download"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:singleLine="true"
|
|
app:layout_constraintRight_toLeftOf="@+id/iv_download"
|
|
app:layout_constraintTop_toBottomOf="@id/tv_author"
|
|
app:layout_constraintLeft_toLeftOf="parent" />
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_download"
|
|
android:layout_width="36dp"
|
|
android:layout_height="36dp"
|
|
android:padding="6dp"
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
|
android:tint="@color/primaryText"
|
|
android:src="@drawable/ic_play_24dp"
|
|
android:contentDescription="@string/start"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintRight_toLeftOf="@+id/tv_export" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_export"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/selectableItemBackground"
|
|
android:padding="10dp"
|
|
android:text="@string/export"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |