mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-08 15:57:29 +00:00
30 lines
1.1 KiB
XML
Executable File
30 lines
1.1 KiB
XML
Executable File
<?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"
|
|
android:layout_marginTop="4dp"
|
|
android:layout_marginBottom="4dp"
|
|
android:background="?android:selectableItemBackground"
|
|
android:orientation="vertical"
|
|
tools:viewBindingIgnore="true">
|
|
|
|
<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:lines="1"
|
|
android:maxLines="1"
|
|
android:padding="2dp"
|
|
android:singleLine="true"
|
|
android:text="@string/app_name"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textStyle="bold" />
|
|
</LinearLayout> |