1
0
mirror of https://github.com/KokaKiwi/BarInsta synced 2024-09-20 10:07:29 +00:00
BarInsta/app/src/main/res/layout/item_story.xml

23 lines
928 B
XML
Raw Normal View History

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-08-29 08:01:42 +00:00
android:layout_margin="8dp"
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>