2022-07-30 12:46:54 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<com.google.android.material.card.MaterialCardView 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"
|
|
|
|
style="@style/Widget.App.OutlinedCard"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-01-21 19:25:46 +01:00
|
|
|
android:padding="@dimen/cornerRadiusMedium">
|
2022-07-30 12:46:54 +02:00
|
|
|
|
|
|
|
<com.google.android.material.radiobutton.MaterialRadioButton
|
|
|
|
android:id="@+id/radio_button"
|
|
|
|
android:layout_width="32dp"
|
|
|
|
android:layout_height="32dp"
|
|
|
|
android:clickable="false"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:checked="true" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/name"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginHorizontal="8dp"
|
|
|
|
android:includeFontPadding="false"
|
2022-07-30 13:22:01 +02:00
|
|
|
android:textAlignment="viewStart"
|
2022-07-30 12:46:54 +02:00
|
|
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Subtitle1"
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/delete_button"
|
|
|
|
app:layout_constraintStart_toEndOf="@id/radio_button"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:text="Mesa Turnip Driver" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/author_package_version"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
android:fontFamily="sans-serif-medium"
|
|
|
|
android:includeFontPadding="false"
|
2022-07-30 13:22:01 +02:00
|
|
|
android:textAlignment="viewStart"
|
2022-07-30 12:46:54 +02:00
|
|
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Subtitle1"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:textStyle="italic"
|
|
|
|
app:layout_constraintEnd_toEndOf="@+id/name"
|
|
|
|
app:layout_constraintStart_toStartOf="@id/name"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/name"
|
|
|
|
tools:text="v1.0.2 by Skyline" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/vendor_driver_version"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
android:fontFamily="sans-serif-medium"
|
|
|
|
android:includeFontPadding="false"
|
2022-07-30 13:22:01 +02:00
|
|
|
android:textAlignment="viewStart"
|
2022-07-30 12:46:54 +02:00
|
|
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Subtitle1"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:textStyle="italic"
|
|
|
|
app:layout_constraintEnd_toEndOf="@+id/name"
|
|
|
|
app:layout_constraintStart_toStartOf="@id/name"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/author_package_version"
|
|
|
|
tools:text="Driver: 512.615.0 • Mesa" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/description"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="6dp"
|
|
|
|
android:includeFontPadding="false"
|
2022-07-30 13:22:01 +02:00
|
|
|
android:textAlignment="viewStart"
|
2022-07-30 12:46:54 +02:00
|
|
|
app:layout_constraintEnd_toEndOf="@+id/name"
|
|
|
|
app:layout_constraintStart_toStartOf="@+id/name"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/vendor_driver_version"
|
|
|
|
tools:text="Turnip driver for a6xx generation adreno" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/delete_button"
|
|
|
|
android:layout_width="30dp"
|
|
|
|
android:layout_height="30dp"
|
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
|
|
|
android:contentDescription="@string/delete_gpu_driver"
|
|
|
|
android:padding="3dp"
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/radio_button"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="@+id/radio_button"
|
|
|
|
app:srcCompat="@drawable/ic_delete"
|
|
|
|
app:tint="?android:attr/textColorSecondary" />
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|