mirror of
https://github.com/wulkanowy/wulkanowy.git
synced 2025-03-15 14:53:59 +01:00
29 lines
1.0 KiB
XML
29 lines
1.0 KiB
XML
![]() |
<?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="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical"
|
||
|
android:paddingHorizontal="24dp"
|
||
|
android:paddingTop="8dp"
|
||
|
android:paddingBottom="8dp"
|
||
|
tools:context=".ui.modules.account.AccountAdapter">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/accountHeaderEmail"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textColor="?android:textColorPrimary"
|
||
|
android:textSize="14sp"
|
||
|
tools:text="jan@fakelog.cf" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/accountHeaderType"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="2dp"
|
||
|
android:textColor="?android:textColorSecondary"
|
||
|
android:textSize="12sp"
|
||
|
tools:text="Konto ucznia" />
|
||
|
</LinearLayout>
|