aboutsummaryrefslogtreecommitdiffstats
path: root/app/res/layout/activity_input_ssid.xml
diff options
context:
space:
mode:
authorFil <fil.bergamo@riseup.net>2017-08-25 17:24:07 +0200
committerFil <fil.bergamo@riseup.net>2017-08-25 17:24:07 +0200
commit9775f8d93d2c49a9844ca4dcbf11433e09419df1 (patch)
tree586461727ae778de6d97bd911b7c9f33bd9a9f82 /app/res/layout/activity_input_ssid.xml
parent5b71fe514e7650b392a01cc2c4398a68062b32cb (diff)
downloadpackages_apps_repwifi-9775f8d93d2c49a9844ca4dcbf11433e09419df1.tar.gz
packages_apps_repwifi-9775f8d93d2c49a9844ca4dcbf11433e09419df1.tar.bz2
packages_apps_repwifi-9775f8d93d2c49a9844ca4dcbf11433e09419df1.zip
new version 0.5 - add various features
This commit introduces a whole new version, v0.5. Various new features were added, along with a massive graphical restyling.
Diffstat (limited to 'app/res/layout/activity_input_ssid.xml')
-rw-r--r--app/res/layout/activity_input_ssid.xml85
1 files changed, 85 insertions, 0 deletions
diff --git a/app/res/layout/activity_input_ssid.xml b/app/res/layout/activity_input_ssid.xml
new file mode 100644
index 0000000..aa7e8f3
--- /dev/null
+++ b/app/res/layout/activity_input_ssid.xml
@@ -0,0 +1,85 @@
+<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:background="@color/black"
+ android:padding="20dp"
+ tools:context=".InputSsidActivity" >
+
+ <!-- -->
+
+ <Button
+ android:id="@+id/btn_select_hidden_ssid"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_centerHorizontal="true"
+ android:layout_marginBottom="32dp"
+ android:layout_marginTop="16dp"
+ android:background="@drawable/repwifi_button"
+ android:onClick="onBtnSelectClick"
+ android:paddingLeft="32dp"
+ android:paddingRight="32dp"
+ android:text="@string/select_saved_net"
+ android:textColor="@color/ThemeLight" />
+
+ <View
+ android:id="@+id/line"
+ android:layout_width="match_parent"
+ android:layout_height="2dp"
+ android:layout_below="@id/btn_select_hidden_ssid"
+ android:layout_marginBottom="20dp"
+ android:layout_marginTop="20dp"
+ android:background="@color/ThemeLight" />
+
+ <TextView
+ android:id="@+id/txt_insert_ssid"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/line"
+ android:layout_centerHorizontal="true"
+ android:layout_marginBottom="10dp"
+ android:background="@color/black"
+ android:maxLines="1"
+ android:text="@string/input_ssid"
+ android:textColor="@color/ThemeLight"
+ android:textSize="9pt" />
+
+ <EditText
+ android:id="@+id/txt_ssid"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/txt_insert_ssid"
+ android:layout_centerHorizontal="true"
+ android:layout_marginBottom="30dp"
+ android:background="@drawable/button_bg"
+ android:inputType="text"
+ android:maxLines="1"
+ android:singleLine="true"
+ android:textColor="@color/ThemeLight"
+ android:textCursorDrawable="@null"
+ android:padding="5dp"
+ android:textSize="10pt" />
+
+ <LinearLayout
+ style="@style/LoginFormContainer"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/txt_ssid"
+ android:background="@color/black"
+ android:orientation="vertical" >
+
+ <Button
+ android:id="@+id/btn_next_hidden_ssid"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="right"
+ android:layout_marginTop="16dp"
+ android:background="@drawable/repwifi_button"
+ android:onClick="onBtnNextClick"
+ android:paddingLeft="32dp"
+ android:paddingRight="32dp"
+ android:text="@string/button_text_next"
+ android:textColor="@color/ThemeLight" />
+ </LinearLayout>
+
+</RelativeLayout> \ No newline at end of file