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

27 lines
1.1 KiB
XML
Raw Normal View History

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-08-29 08:01:42 +00:00
android:textColor="?android:textColorPrimaryInverse"
android:textStyle="bold"
tools:text="@string/app_name" />
2020-07-01 17:08:28 +00:00
</LinearLayout>