2019-06-03 23:25:05 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-11-29 22:51:35 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_width="match_parent"
|
2019-10-11 13:36:42 +02:00
|
|
|
android:layout_height="wrap_content"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:orientation="vertical"
|
2020-06-24 22:29:58 +02:00
|
|
|
android:paddingTop="6dp"
|
|
|
|
android:paddingBottom="12dp"
|
|
|
|
android:background="?attr/primaryBackgroundColor">
|
2019-06-03 23:25:05 +02:00
|
|
|
|
2019-10-11 13:36:42 +02:00
|
|
|
<androidx.core.widget.NestedScrollView
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_width="match_parent"
|
2019-10-11 13:36:42 +02:00
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/createNewUser"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:text="@string/adminCreateNewUser"
|
|
|
|
android:drawablePadding="24dp"
|
2020-03-04 20:37:28 +01:00
|
|
|
android:textColor="?attr/primaryTextColor"
|
2019-10-11 13:36:42 +02:00
|
|
|
android:textSize="16sp"
|
2020-11-29 22:51:35 +01:00
|
|
|
android:padding="12dp"
|
|
|
|
app:drawableStartCompat="@drawable/ic_person_add" />
|
2019-10-11 13:36:42 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</androidx.core.widget.NestedScrollView>
|
2019-06-03 23:25:05 +02:00
|
|
|
|
2020-06-24 22:29:58 +02:00
|
|
|
</LinearLayout>
|