aboutsummaryrefslogtreecommitdiffstats
path: root/project/res/layout/activity_show_status.xml
diff options
context:
space:
mode:
authorFil <fil.bergamo@riseup.net>2017-03-06 22:37:59 +0100
committerFil <fil.bergamo@riseup.net>2017-03-06 22:37:59 +0100
commit8b111e0799432fc5a6ead191e1029cc1446a8c91 (patch)
tree09fe0af45024e7a0b74af9c35472d685032e8684 /project/res/layout/activity_show_status.xml
parent04b918b3a14a04fb851b39c8582bdf07e5f0fd2b (diff)
downloadpackages_apps_repwifi-8b111e0799432fc5a6ead191e1029cc1446a8c91.zip
packages_apps_repwifi-8b111e0799432fc5a6ead191e1029cc1446a8c91.tar.gz
packages_apps_repwifi-8b111e0799432fc5a6ead191e1029cc1446a8c91.tar.bz2
Commit initial project
Diffstat (limited to 'project/res/layout/activity_show_status.xml')
-rw-r--r--project/res/layout/activity_show_status.xml43
1 files changed, 43 insertions, 0 deletions
diff --git a/project/res/layout/activity_show_status.xml b/project/res/layout/activity_show_status.xml
new file mode 100644
index 0000000..9f7e584
--- /dev/null
+++ b/project/res/layout/activity_show_status.xml
@@ -0,0 +1,43 @@
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:padding="15dp"
+ android:background="@color/black"
+ tools:context=".ShowStatusActivity" >
+
+ <TextView
+ android:id="@+id/txt_status"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_centerHorizontal="true"
+ android:background="@color/black"
+ android:textColor="@color/ThemeLight" />
+
+ <Button
+ android:id="@+id/btn_disconnect"
+ android:background="@color/ThemeDark"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_centerVertical="true"
+ android:layout_centerHorizontal="true"
+ android:layout_below="@id/txt_status"
+ android:layout_marginTop="10dp"
+ android:textColor="@color/ThemeLight"
+ android:text="@string/disconnect"
+ android:onClick="onBtnDisconnectClick"/>
+
+ <Button
+ android:id="@+id/btn_back"
+ android:background="@color/ThemeDark"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_centerVertical="true"
+ android:layout_centerHorizontal="true"
+ android:layout_below="@id/txt_status"
+ android:layout_marginTop="10dp"
+ android:textColor="@color/ThemeLight"
+ android:text="@string/back_main"
+ android:onClick="onBtnMainClick"/>
+
+</RelativeLayout> \ No newline at end of file