mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-08 15:57:29 +00:00
61 lines
2.2 KiB
XML
Executable File
61 lines
2.2 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:foreground="?android:selectableItemBackground">
|
|
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
|
android:id="@+id/postImage"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:actualImageScaleType="centerCrop"
|
|
app:viewAspectRatio="1"
|
|
tools:background="@mipmap/ic_launcher" />
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:id="@+id/isDownloaded"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_gravity="start|top"
|
|
android:layout_margin="8dp"
|
|
android:visibility="gone"
|
|
app:srcCompat="@drawable/ic_cloud_download_24"
|
|
app:tint="@color/green_400"
|
|
tools:visibility="gone" />
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:id="@+id/typeIcon"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_gravity="end|top"
|
|
android:layout_margin="8dp"
|
|
app:srcCompat="@drawable/ic_video_24"
|
|
tools:visibility="visible" />
|
|
|
|
<!--<ProgressBar-->
|
|
<!-- android:id="@+id/progressView"-->
|
|
<!-- android:layout_width="45dp"-->
|
|
<!-- android:layout_height="45dp"-->
|
|
<!-- android:layout_gravity="center"-->
|
|
<!-- android:visibility="gone" />-->
|
|
|
|
<FrameLayout
|
|
android:id="@+id/selectedView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="#8A000000"
|
|
android:visibility="gone"
|
|
tools:visibility="gone">
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:layout_width="28dp"
|
|
android:layout_height="28dp"
|
|
android:layout_gravity="end|top"
|
|
android:layout_margin="8dp"
|
|
app:srcCompat="@drawable/ic_check_24"
|
|
app:tint="@color/blue_300"
|
|
tools:visibility="visible" />
|
|
</FrameLayout>
|
|
</FrameLayout> |