aboutsummaryrefslogtreecommitdiffstats
path: root/app/res/layout/activity_input_password.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/res/layout/activity_input_password.xml')
-rw-r--r--app/res/layout/activity_input_password.xml58
1 files changed, 29 insertions, 29 deletions
diff --git a/app/res/layout/activity_input_password.xml b/app/res/layout/activity_input_password.xml
index a024879..14dd78a 100644
--- a/app/res/layout/activity_input_password.xml
+++ b/app/res/layout/activity_input_password.xml
@@ -2,63 +2,63 @@
xmlns:tools="http://schemas.android.com/tools"
tools:context=".InputPasswordActivity" >
-
-
<ScrollView
android:id="@+id/login_form"
android:layout_width="match_parent"
android:layout_height="match_parent"
- android:background = "@color/black" >
+ android:background="@color/black" >
<LinearLayout
style="@style/LoginFormContainer"
- android:orientation="vertical"
- android:background="@color/black"
android:layout_width="match_parent"
- android:layout_height="wrap_content" >
-
- <TextView
+ android:layout_height="wrap_content"
+ android:background="@color/black"
+ android:orientation="vertical" >
+
+ <TextView
android:id="@+id/txt_insert_pass"
android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textCursorDrawable="@null"
- android:textColor="@color/ThemeLight"
- android:textSize="10pt"
- android:layout_marginBottom="10dp"
- android:background="@color/black"
- android:maxLines = "10"
- android:text="@string/insert_nets_password" />
-
+ android:layout_height="wrap_content"
+ android:layout_marginBottom="10dp"
+ android:background="@color/black"
+ android:maxLines="10"
+ android:text="@string/insert_nets_password"
+ android:textColor="@color/ThemeLight"
+ android:textSize="10pt" />
+
<EditText
android:id="@+id/txt_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPassword"
+ android:maxLines="1"
+ android:singleLine="true"
android:textColor="@color/ThemeLight"
+ android:background="@drawable/button_bg"
+ android:textCursorDrawable="@null"
android:textSize="10pt"
- android:maxLines="1"
- android:singleLine="true" />
-
- <CheckBox
+ android:padding="5dp" />
+
+ <CheckBox
android:id="@+id/chk_show_pass"
- android:textColor="@color/ThemeLight"
- android:text="@string/show_password"
android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
-
+ android:layout_height="wrap_content"
+ android:text="@string/show_password"
+ android:textColor="@color/ThemeLight"
+ android:textSize="9pt" />
+
<Button
android:id="@+id/sign_in_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:background="@color/ThemeDark"
- android:textColor="@color/ThemeLight"
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:onClick="onBtnNextClick" />
-
+ android:textColor="@color/ThemeLight" />
</LinearLayout>
</ScrollView>