41 lines
1.3 KiB
XML
41 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="192dp"
|
|
android:background="@drawable/gradient_background"
|
|
android:padding="16dp"
|
|
android:orientation="vertical"
|
|
android:gravity="center">
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@mipmap/ic_launcher_moodl"
|
|
android:layout_marginRight="10dp"
|
|
android:layout_marginEnd="10dp"/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/app_name"
|
|
android:textStyle="bold"
|
|
android:layout_gravity="center"
|
|
android:textColor="@color/white"
|
|
android:textSize="24sp"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/totalValueDrawer"
|
|
android:textColor="@color/white"
|
|
android:textSize="20sp"/>
|
|
|
|
|
|
</LinearLayout> |