295 lines
12 KiB
XML
295 lines
12 KiB
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:animateLayoutChanges="true"
|
|
android:orientation="vertical"
|
|
tools:context=".MainActivity">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="72dp"
|
|
android:gravity="center_vertical">
|
|
|
|
<ImageView
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp"
|
|
android:layout_marginStart="32dp"
|
|
android:contentDescription="@string/app_name"
|
|
android:src="@mipmap/ic_launcher" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="25dp"
|
|
android:text="@string/app_name"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Title"
|
|
android:textSize="20sp" />
|
|
|
|
<View
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
android:id="@+id/activity_main_status"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginEnd="16dp"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:foreground="?android:attr/selectableItemBackground"
|
|
app:cardBackgroundColor="#4CAF50"
|
|
app:cardCornerRadius="8dp"
|
|
app:cardElevation="8dp">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingStart="18dp"
|
|
android:paddingTop="20dp"
|
|
android:paddingEnd="18dp"
|
|
android:paddingBottom="20dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/activity_main_status_icon"
|
|
android:layout_width="28dp"
|
|
android:layout_height="28dp"
|
|
android:layout_centerVertical="true"
|
|
android:contentDescription="@string/Activated"
|
|
android:src="@drawable/ic_check_circle"
|
|
android:tint="@android:color/white" />
|
|
|
|
<TextView
|
|
android:id="@+id/activity_main_status_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="25dp"
|
|
android:layout_toEndOf="@id/activity_main_status_icon"
|
|
android:text="@string/Activated"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
|
android:textColor="@android:color/white" />
|
|
|
|
<TextView
|
|
android:id="@+id/activity_main_status_summary"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/activity_main_status_title"
|
|
android:layout_alignStart="@id/activity_main_status_title"
|
|
android:layout_marginTop="5dp"
|
|
android:text="@string/ActivatedDetail"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
|
android:textColor="@android:color/white" />
|
|
</RelativeLayout>
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
android:id="@+id/activity_main_modules"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginEnd="16dp"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:foreground="?android:attr/selectableItemBackground"
|
|
app:cardCornerRadius="8dp">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingStart="18dp"
|
|
android:paddingTop="16dp"
|
|
android:paddingEnd="18dp"
|
|
android:paddingBottom="16dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/activity_main_modules_icon"
|
|
android:layout_width="28dp"
|
|
android:layout_height="28dp"
|
|
android:layout_centerVertical="true"
|
|
android:contentDescription="@string/Modules"
|
|
android:src="@drawable/ic_apps" />
|
|
|
|
<TextView
|
|
android:id="@+id/activity_main_modules_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="25dp"
|
|
android:layout_toEndOf="@id/activity_main_modules_icon"
|
|
android:text="@string/Modules"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium" />
|
|
|
|
<TextView
|
|
android:id="@+id/activity_main_modules_summary"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/activity_main_modules_title"
|
|
android:layout_alignStart="@id/activity_main_modules_title"
|
|
android:layout_marginTop="2dp"
|
|
android:text="@string/ModulesDetail"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
|
android:textColor="@android:color/darker_gray" />
|
|
</RelativeLayout>
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
android:id="@+id/activity_main_downloads"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginEnd="16dp"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:foreground="?android:attr/selectableItemBackground"
|
|
app:cardCornerRadius="8dp">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingStart="18dp"
|
|
android:paddingTop="16dp"
|
|
android:paddingEnd="18dp"
|
|
android:paddingBottom="16dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/activity_main_downloads_icon"
|
|
android:layout_width="28dp"
|
|
android:layout_height="28dp"
|
|
android:layout_centerVertical="true"
|
|
android:contentDescription="@string/Downloads"
|
|
android:src="@drawable/ic_get_app" />
|
|
|
|
<TextView
|
|
android:id="@+id/activity_main_downloads_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="25dp"
|
|
android:layout_toEndOf="@id/activity_main_downloads_icon"
|
|
android:text="@string/Downloads"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium" />
|
|
|
|
<TextView
|
|
android:id="@+id/activity_main_download_summary"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/activity_main_downloads_title"
|
|
android:layout_alignStart="@id/activity_main_downloads_title"
|
|
android:layout_marginTop="2dp"
|
|
android:text="@string/ModuleUpgradable"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
|
android:textColor="@android:color/darker_gray" />
|
|
</RelativeLayout>
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/activity_main_apps"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="5dp"
|
|
android:background="?android:attr/selectableItemBackground"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:orientation="horizontal"
|
|
android:padding="16dp"
|
|
android:paddingStart="32dp"
|
|
android:paddingEnd="32dp">
|
|
|
|
<ImageView
|
|
android:layout_width="25dp"
|
|
android:layout_height="25dp"
|
|
android:contentDescription="@string/Apps"
|
|
android:src="@drawable/outline_list_24" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="25dp"
|
|
android:text="@string/Apps"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/activity_main_logs"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="5dp"
|
|
android:background="?android:attr/selectableItemBackground"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:orientation="horizontal"
|
|
android:padding="16dp"
|
|
android:paddingStart="32dp"
|
|
android:paddingEnd="32dp">
|
|
|
|
<ImageView
|
|
android:layout_width="25dp"
|
|
android:layout_height="25dp"
|
|
android:contentDescription="@string/Logs"
|
|
android:src="@drawable/ic_assignment" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="25dp"
|
|
android:text="@string/Logs"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/activity_main_settings"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:background="?android:attr/selectableItemBackground"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:orientation="horizontal"
|
|
android:padding="16dp"
|
|
android:paddingStart="32dp"
|
|
android:paddingEnd="32dp">
|
|
|
|
<ImageView
|
|
android:layout_width="25dp"
|
|
android:layout_height="25dp"
|
|
android:contentDescription="@string/Settings"
|
|
android:src="@drawable/ic_settings" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="25dp"
|
|
android:text="@string/Settings"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/activity_main_about"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:background="?android:attr/selectableItemBackground"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:orientation="horizontal"
|
|
android:padding="16dp"
|
|
android:paddingStart="32dp"
|
|
android:paddingEnd="32dp">
|
|
|
|
<ImageView
|
|
android:layout_width="25dp"
|
|
android:layout_height="25dp"
|
|
android:contentDescription="@string/About"
|
|
android:src="@drawable/ic_info" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="25dp"
|
|
android:text="@string/About"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium" />
|
|
</LinearLayout>
|
|
</LinearLayout> |