2022-01-13 10:38:46 +01:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-08-08 19:21:56 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:clipChildren="false"
|
|
|
|
|
android:foreground="?attr/selectableItemBackground">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/server_name_text_view"
|
2022-01-13 10:38:46 +01:00
|
|
|
style="@style/LabelMedium"
|
2021-08-08 19:21:56 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:ellipsize="marquee"
|
2022-03-23 21:47:08 +01:00
|
|
|
android:singleLine="true"
|
2021-08-08 19:21:56 +02:00
|
|
|
android:paddingStart="20dp"
|
|
|
|
|
android:paddingTop="12dp"
|
|
|
|
|
android:paddingEnd="12dp"
|
2022-01-13 10:38:46 +01:00
|
|
|
android:paddingBottom="4dp"
|
2021-08-08 19:21:56 +02:00
|
|
|
android:text="@string/label_placeholder"
|
2021-08-10 09:20:58 +02:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2022-01-13 10:38:46 +01:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2021-08-08 19:21:56 +02:00
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/server_address_text_view"
|
2022-01-13 10:38:46 +01:00
|
|
|
style="@style/LabelSmall"
|
2021-08-08 19:21:56 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:ellipsize="marquee"
|
2022-03-23 21:47:08 +01:00
|
|
|
android:singleLine="true"
|
2021-08-08 19:21:56 +02:00
|
|
|
android:paddingStart="20dp"
|
|
|
|
|
android:paddingEnd="12dp"
|
2022-01-13 10:38:46 +01:00
|
|
|
android:paddingBottom="12dp"
|
2021-08-08 19:21:56 +02:00
|
|
|
android:text="@string/label_placeholder"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2022-01-13 10:38:46 +01:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2021-08-10 09:20:58 +02:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/server_name_text_view" />
|
2021-08-08 19:21:56 +02:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|