2021-10-25 19:45:56 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="80dp"
|
2021-10-28 17:45:34 +02:00
|
|
|
android:background="?android:attr/selectableItemBackground"
|
|
|
|
android:orientation="vertical" android:clickable="true" android:focusable="true">
|
2021-10-25 19:45:56 +02:00
|
|
|
<TextView
|
2021-10-27 03:44:12 +02:00
|
|
|
android:text="ntfy.sh/example"
|
2021-10-25 19:45:56 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" android:id="@+id/topic_text"
|
2021-10-31 01:38:45 +02:00
|
|
|
android:layout_marginTop="16dp" android:layout_marginStart="16dp"
|
|
|
|
android:textColor="@color/primaryTextColor"
|
2021-10-25 19:45:56 +02:00
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium"/>
|
|
|
|
<TextView
|
2021-10-27 03:44:12 +02:00
|
|
|
android:text="Subscribed, 0 notifications"
|
2021-10-25 19:45:56 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" android:id="@+id/topic_status"
|
2021-10-28 17:45:34 +02:00
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small" android:layout_marginStart="16dp"/>
|
2021-10-25 19:45:56 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|