mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-08 15:57:29 +00:00
30 lines
1.3 KiB
XML
30 lines
1.3 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<androidx.constraintlayout.widget.ConstraintLayout 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">
|
||
|
|
||
|
<awais.instagrabber.customviews.SquareImageView
|
||
|
android:id="@+id/image"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="0dp"
|
||
|
android:scaleType="fitCenter"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent"
|
||
|
tools:background="@mipmap/ic_launcher" />
|
||
|
|
||
|
<androidx.appcompat.widget.AppCompatImageView
|
||
|
android:id="@+id/indicator"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="0dp"
|
||
|
android:visibility="gone"
|
||
|
app:layout_constraintBottom_toBottomOf="@id/image"
|
||
|
app:layout_constraintEnd_toEndOf="@id/image"
|
||
|
app:layout_constraintStart_toStartOf="@id/image"
|
||
|
app:layout_constraintTop_toTopOf="@id/image"
|
||
|
app:srcCompat="@drawable/bg_indicator"
|
||
|
app:tint="@color/grey_800"
|
||
|
tools:visibility="visible" />
|
||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|