mirror of
https://github.com/shaulascr/ecommerce_serang.git
synced 2025-12-16 16:01:02 +00:00
39 lines
1.3 KiB
XML
39 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<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:id="@+id/main"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".ui.profile.mystore.StoreSuspendedActivity"
|
|
android:orientation="vertical"
|
|
android:fitsSystemWindows="true">
|
|
|
|
<include
|
|
android:id="@+id/header"
|
|
layout="@layout/header" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:gravity="center"
|
|
android:padding="16dp">
|
|
|
|
<ImageView
|
|
android:layout_width="200dp"
|
|
android:layout_height="200dp"
|
|
android:src="@drawable/ic_settings"
|
|
app:tint="@color/blue_500"/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Toko Anda telah dinonaktifkan oleh Admin. Harap hubungi Admin untuk melakukan reaktivasi."
|
|
style="@style/body_large"
|
|
android:fontFamily="@font/dmsans_extrabold"
|
|
android:textAlignment="center" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |