aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout-land/activity_main.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout-land/activity_main.xml')
-rw-r--r--app/src/main/res/layout-land/activity_main.xml52
1 files changed, 52 insertions, 0 deletions
diff --git a/app/src/main/res/layout-land/activity_main.xml b/app/src/main/res/layout-land/activity_main.xml
new file mode 100644
index 0000000..eb03ff8
--- /dev/null
+++ b/app/src/main/res/layout-land/activity_main.xml
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="utf-8"?>
+<androidx.constraintlayout.widget.ConstraintLayout 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"
+ tools:context=".MainActivity">
+<LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical"
+ android:background="@mipmap/main_bg_foreground"
+ >
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_weight="1"
+ android:gravity="center"
+ android:text="Pai Fillo Nai"
+ android:textColor="@color/white"
+ android:textSize="60sp"/>
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_weight="1"
+ android:padding="20dp"
+ >
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_weight="1"
+ android:gravity="center"
+ android:text="ONLINE"
+ android:id="@+id/txtvOnline"
+ android:layout_margin="20dp"
+ android:textColor="#03A9F4"
+ android:background="@drawable/bg_rounded_rectangle"
+ android:textSize="30sp"/>
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_weight="1"
+ android:gravity="center"
+ android:text="OFFLINE"
+ android:layout_margin="20dp"
+ android:textColor="#AAAAAA"
+ android:id="@+id/txtvOffline"
+ android:background="@drawable/bg_rounded_rectangle"
+ android:textSize="30sp"/>
+ </LinearLayout>
+</LinearLayout>
+</androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file