2020-07-01 17:08:28 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-08-29 08:01:42 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-07-01 17:08:28 +00:00
|
|
|
android:layout_width="@dimen/story_item_width"
|
|
|
|
android:layout_height="@dimen/story_item_height"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
2020-11-04 18:02:23 +00:00
|
|
|
android:layout_margin="4dp"
|
2020-08-29 08:01:42 +00:00
|
|
|
android:foreground="?android:selectableItemBackground">
|
2020-07-01 17:08:28 +00:00
|
|
|
|
2020-08-29 08:01:42 +00:00
|
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
2020-07-01 17:08:28 +00:00
|
|
|
android:id="@+id/icon"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-08-29 08:01:42 +00:00
|
|
|
app:actualImageScaleType="fitCenter" />
|
2020-07-01 17:08:28 +00:00
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
android:id="@+id/selectedView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@android:drawable/gallery_thumb"
|
|
|
|
android:visibility="gone" />
|
|
|
|
</FrameLayout>
|