2020-07-01 17:08:28 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="@dimen/profile_picture_size"
|
|
|
|
android:layout_height="wrap_content"
|
2020-08-29 08:01:42 +00:00
|
|
|
android:layout_margin="8dp"
|
2020-07-01 17:08:28 +00:00
|
|
|
android:background="?android:selectableItemBackground"
|
2020-08-29 08:01:42 +00:00
|
|
|
android:orientation="vertical">
|
2020-07-01 17:08:28 +00:00
|
|
|
|
|
|
|
<awais.instagrabber.customviews.CircularImageView
|
|
|
|
android:id="@+id/icon"
|
|
|
|
android:layout_width="@dimen/highlight_size"
|
|
|
|
android:layout_height="@dimen/highlight_size"
|
|
|
|
android:layout_gravity="center_horizontal" />
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:padding="2dp"
|
|
|
|
android:singleLine="true"
|
2020-09-03 19:07:43 +00:00
|
|
|
android:textColor="?attr/colorOnPrimarySurface"
|
2020-08-29 08:01:42 +00:00
|
|
|
android:textStyle="bold"
|
|
|
|
tools:text="@string/app_name" />
|
2020-07-01 17:08:28 +00:00
|
|
|
</LinearLayout>
|