mirror of
https://github.com/d4rken-org/capod.git
synced 2026-09-16 11:16:12 -04:00
- Change "No primary device" card to "No device configured" with clearer messaging - Replace troubleshoot action with "Manage devices" button that navigates to device manager - Move troubleshooter from overview to Settings → Support section - Add concise troubleshooter description for settings preference - Update navigation to support troubleshooter access from settings - Improve user experience by providing more intuitive device management flow
68 lines
2.6 KiB
XML
68 lines
2.6 KiB
XML
<?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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="16dp"
|
|
android:layout_marginVertical="8dp"
|
|
app:cardCornerRadius="12dp"
|
|
app:cardElevation="2dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="16dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical">
|
|
|
|
<ImageView
|
|
android:id="@+id/device_icon"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_marginEnd="16dp"
|
|
tools:src="@drawable/ic_baseline_devices_other_24" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/device_name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?textAppearanceSubtitle1"
|
|
android:textStyle="bold"
|
|
tools:text="My AirPods Pro" />
|
|
|
|
<TextView
|
|
android:id="@+id/device_details"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?textAppearanceBody2"
|
|
android:textColor="?android:textColorSecondary"
|
|
tools:text="AA:BB:CC:DD:EE:FF • AirPods Pro" />
|
|
|
|
</LinearLayout>
|
|
|
|
<ImageView
|
|
android:id="@+id/menu_button"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_marginStart="8dp"
|
|
android:background="?selectableItemBackgroundBorderless"
|
|
android:contentDescription="Menu"
|
|
android:src="@drawable/abc_ic_menu_overflow_material" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</com.google.android.material.card.MaterialCardView> |