2018-07-28 07:38:50 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-07-28 07:45:01 +02:00
|
|
|
<LinearLayout
|
2019-07-10 09:59:47 +02:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
2018-07-28 07:45:01 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="16dp"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:background="?attr/selectableItemBackground">
|
2018-07-28 07:38:50 +02:00
|
|
|
|
2019-02-21 06:21:32 +01:00
|
|
|
<pl.droidsonroids.gif.GifImageView
|
2018-12-22 03:42:24 +01:00
|
|
|
android:id="@+id/subreddit_icon_gif_image_view_item_subscribed_subreddit"
|
2018-07-28 07:45:01 +02:00
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="24dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
2019-09-20 15:27:00 +02:00
|
|
|
android:layout_marginEnd="32dp" />
|
2018-07-28 07:45:01 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/subreddit_name_text_view_item_subscribed_subreddit"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-05-07 17:55:49 +02:00
|
|
|
android:textColor="@color/primaryTextColor"
|
2019-09-20 15:27:00 +02:00
|
|
|
android:textSize="?attr/font_default"
|
|
|
|
android:layout_gravity="center_vertical" />
|
2018-07-28 07:45:01 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|