43 lines
1.5 KiB
XML
43 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout 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="50dp"
|
|
android:layout_marginTop="17dp"
|
|
android:paddingStart="28dp"
|
|
android:paddingEnd="28dp">
|
|
|
|
<de.hdodenhof.circleimageview.CircleImageView
|
|
android:id="@+id/logo"
|
|
android:layout_width="50dp"
|
|
android:layout_height="50dp"
|
|
android:layout_centerVertical="true"
|
|
android:src="@mipmap/ic_launcher" />
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignTop="@id/logo"
|
|
android:layout_alignBottom="@id/logo"
|
|
android:layout_marginStart="20dp"
|
|
android:layout_toEndOf="@id/logo"
|
|
android:fontFamily="@font/inter"
|
|
android:gravity="center"
|
|
android:text="@string/app_name"
|
|
|
|
android:textColor="@color/color_ff3a3938"
|
|
android:textSize="16sp"
|
|
android:textStyle="bold" />
|
|
|
|
<androidx.appcompat.widget.SwitchCompat
|
|
android:id="@+id/app_switch"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_centerVertical="true"
|
|
android:thumb="@drawable/bg_sw"
|
|
app:track="@color/transparent" />
|
|
|
|
</RelativeLayout> |