mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-05 22:47:30 +00:00
138 lines
5.6 KiB
XML
Executable File
138 lines
5.6 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?android:selectableItemBackground"
|
|
android:orientation="horizontal"
|
|
android:paddingStart="0dp"
|
|
android:paddingLeft="0dp"
|
|
android:paddingEnd="4dp"
|
|
android:paddingRight="4dp">
|
|
|
|
<FrameLayout
|
|
android:layout_width="@dimen/simple_item_picture_size"
|
|
android:layout_height="@dimen/simple_item_picture_size"
|
|
android:gravity="center">
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:id="@+id/ivProfilePic"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal">
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:layout_width="@dimen/simple_item_picture_size_half"
|
|
android:layout_height="match_parent" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="@dimen/simple_item_picture_size_half"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:layout_width="@dimen/simple_item_picture_size_half"
|
|
android:layout_height="@dimen/simple_item_picture_size_half" />
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:layout_width="@dimen/simple_item_picture_size_half"
|
|
android:layout_height="@dimen/simple_item_picture_size_half" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</FrameLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
android:id="@+id/tvUsername"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="start"
|
|
android:layout_weight="1.0"
|
|
android:ellipsize="marquee"
|
|
android:paddingStart="8dp"
|
|
android:paddingLeft="8dp"
|
|
android:paddingTop="4dp"
|
|
android:paddingEnd="4dp"
|
|
android:paddingRight="4dp"
|
|
android:singleLine="true"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textStyle="bold" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:paddingLeft="8dp"
|
|
android:paddingTop="4dp"
|
|
android:paddingRight="8dp"
|
|
android:paddingBottom="16dp">
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:id="@+id/notTextType"
|
|
android:layout_width="4dp"
|
|
android:layout_height="4dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginEnd="4dp"
|
|
android:layout_marginRight="4dp"
|
|
android:visibility="gone"
|
|
app:srcCompat="@android:drawable/ic_notification_overlay"
|
|
app:tint="@color/feed_text_primary_color" />
|
|
|
|
<awais.instagrabber.customviews.RamboTextView
|
|
android:id="@+id/tvComment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="start"
|
|
android:autoLink="web|email"
|
|
android:ellipsize="end"
|
|
android:linksClickable="true"
|
|
android:textAppearance="@style/TextAppearance.AppCompat" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:weightSum="3">
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
android:id="@+id/tvLikes"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:ellipsize="marquee"
|
|
android:paddingStart="4dp"
|
|
android:paddingLeft="4dp"
|
|
android:paddingTop="4dp"
|
|
android:paddingEnd="8dp"
|
|
android:paddingRight="8dp"
|
|
android:singleLine="true"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
|
android:textSize="14sp" />
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
android:id="@+id/tvDate"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="2"
|
|
android:layout_gravity="start"
|
|
android:ellipsize="marquee"
|
|
android:paddingStart="4dp"
|
|
android:paddingLeft="4dp"
|
|
android:paddingTop="4dp"
|
|
android:paddingEnd="8dp"
|
|
android:paddingRight="8dp"
|
|
android:singleLine="true"
|
|
android:textStyle="italic"
|
|
android:gravity="right"/>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
</LinearLayout> |