2018-07-28 07:38:50 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-07-28 07:45:01 +02:00
|
|
|
<LinearLayout
|
2018-07-28 07:38:50 +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
|
|
|
|
2018-12-22 03:42:24 +01:00
|
|
|
<com.felipecsl.gifimageview.library.GifImageView
|
|
|
|
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"
|
|
|
|
android:layout_marginEnd="32dp"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/subreddit_name_text_view_item_subscribed_subreddit"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="@android:color/black"
|
|
|
|
android:layout_gravity="center_vertical"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|