wulkanowy-mod/app/src/main/res/layout/item_login_options.xml

52 lines
1.8 KiB
XML
Raw Normal View History

2018-08-22 15:31:17 -05:00
<?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="wrap_content"
2018-08-25 17:18:31 -05:00
android:background="@drawable/ic_all_divider"
2018-08-22 15:31:17 -05:00
android:clickable="true"
android:focusable="true"
android:foreground="?attr/selectableItemBackgroundBorderless"
2018-08-25 17:18:31 -05:00
android:paddingBottom="5dp"
2018-08-22 15:31:17 -05:00
android:paddingEnd="20dp"
android:paddingLeft="10dp"
android:paddingRight="20dp"
android:paddingStart="10dp"
2018-08-25 17:18:31 -05:00
android:paddingTop="5dp">
2018-08-22 15:31:17 -05:00
<android.support.v7.widget.AppCompatImageView
android:id="@+id/loginItemImage"
2018-08-25 17:18:31 -05:00
android:layout_width="60dp"
android:layout_height="60dp"
2018-08-22 15:31:17 -05:00
android:layout_centerVertical="true"
app:srcCompat="@drawable/ic_login_person_24px" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginStart="10dp"
android:layout_toEndOf="@id/loginItemImage"
android:layout_toRightOf="@id/loginItemImage">
<TextView
android:id="@+id/loginItemName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
2018-08-25 17:18:31 -05:00
android:layout_marginBottom="5dp"
2018-08-22 15:31:17 -05:00
android:text="@string/app_name"
android:textSize="20sp" />
<TextView
android:id="@+id/loginItemSchool"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/loginItemName"
2018-08-25 17:18:31 -05:00
android:maxLines="2"
2018-08-22 15:31:17 -05:00
android:text="@string/app_name"
2018-08-25 17:18:31 -05:00
android:textSize="13sp" />
2018-08-22 15:31:17 -05:00
</RelativeLayout>
2018-08-25 17:18:31 -05:00
</RelativeLayout>