mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-01-06 16:27:38 +03:00
44 lines
1.7 KiB
XML
44 lines
1.7 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout 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/itemDeviceRoot"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="?riotx_background"
|
||
|
android:foreground="?attr/selectableItemBackground"
|
||
|
android:orientation="vertical"
|
||
|
android:paddingStart="16dp"
|
||
|
android:paddingTop="8dp"
|
||
|
android:paddingEnd="16dp"
|
||
|
android:paddingBottom="8dp">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/itemDeviceDisplayName"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textColor="?riotx_text_primary"
|
||
|
android:textSize="16sp"
|
||
|
app:layout_constraintBottom_toTopOf="@+id/itemUserName"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintStart_toEndOf="@+id/itemUserAvatar"
|
||
|
app:layout_constraintTop_toTopOf="parent"
|
||
|
app:layout_constraintVertical_chainStyle="packed"
|
||
|
tools:text="Android phone" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/itemDeviceId"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="4dp"
|
||
|
android:ellipsize="end"
|
||
|
android:maxLines="1"
|
||
|
android:textColor="?riotx_text_secondary"
|
||
|
android:textSize="15sp"
|
||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintStart_toEndOf="@+id/itemUserAvatar"
|
||
|
app:layout_constraintTop_toBottomOf="@+id/itemUserId"
|
||
|
tools:text="XUIDERFZAA" />
|
||
|
|
||
|
</LinearLayout>
|