2022-07-30 12:46:54 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout 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:id="@+id/coordinator_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context=".preference.GpuDriverActivity">
|
|
|
|
|
|
|
|
<include
|
|
|
|
android:id="@+id/titlebar"
|
|
|
|
layout="@layout/titlebar" />
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/driver_list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
android:padding="@dimen/grid_padding"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
|
|
|
|
2022-11-21 09:58:10 +01:00
|
|
|
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
|
2022-07-30 12:46:54 +02:00
|
|
|
android:id="@+id/add_driver_button"
|
2022-11-28 00:06:07 +01:00
|
|
|
style="@style/Widget.MaterialComponents.ExtendedFloatingActionButton.Icon"
|
2022-07-30 12:46:54 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="end|bottom"
|
|
|
|
android:layout_margin="16dp"
|
|
|
|
android:contentDescription="@string/add_gpu_driver"
|
2022-11-28 00:06:07 +01:00
|
|
|
android:elevation="@dimen/mtrl_extended_fab_elevation"
|
|
|
|
android:stateListAnimator="@null"
|
2022-11-21 09:58:10 +01:00
|
|
|
android:text="@string/install"
|
|
|
|
app:icon="@drawable/ic_add"
|
2022-11-28 00:06:07 +01:00
|
|
|
tools:ignore="PrivateResource" />
|
2022-07-30 12:46:54 +02:00
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|