80 lines
3.2 KiB
XML
80 lines
3.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentStart="true"
|
|
android:padding="@dimen/list_padding">
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_toStartOf="@+id/action_container"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/key"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:clickable="true"
|
|
android:fontFamily="monospace"
|
|
android:longClickable="true"
|
|
android:textAppearance="?textAppearanceBodyMedium" />
|
|
|
|
<TextView
|
|
android:id="@+id/key_type"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:clickable="true"
|
|
android:longClickable="true"
|
|
android:textAppearance="?textAppearanceLabelMedium" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/action_container"
|
|
android:layout_width="@dimen/key_action_width"
|
|
android:layout_height="48dp"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_centerVertical="true"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<ImageButton
|
|
android:id="@+id/button_remove"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
|
android:padding="@dimen/image_button_padding"
|
|
android:src="@drawable/ic_delete_24dp"
|
|
android:visibility="gone" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/button_enable_device"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
|
android:padding="@dimen/image_button_padding"
|
|
android:src="@drawable/ic_new_releases_24dp"
|
|
android:visibility="gone" />
|
|
|
|
<ImageView
|
|
android:id="@+id/verified_fingerprint"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:src="@drawable/ic_verified_user_24dp"
|
|
android:visibility="gone"
|
|
app:tint="@color/light_green_600" />
|
|
|
|
<androidx.appcompat.widget.SwitchCompat
|
|
android:id="@+id/tgl_trust"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="gone" />
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout>
|
|
</layout> |