diff options
author | Matthew Wong <wongma7@outlook.com> | 2015-08-25 13:47:13 -0400 |
---|---|---|
committer | Matthew Wong <wongma7@outlook.com> | 2015-08-25 13:47:13 -0400 |
commit | dc732cb573288a136a66fd74c0b8a48718907e52 (patch) | |
tree | c492d20f24a10e598ee0099de5162d5bfa7743d9 /app/src/main/res | |
parent | 327945f3b8aa56f77559a25bc9160dae0a0cc6d2 (diff) |
Generated password EditText to TextView + fix generation bug
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/fragment_pwgen.xml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/app/src/main/res/layout/fragment_pwgen.xml b/app/src/main/res/layout/fragment_pwgen.xml index 072a78a9..c670b93b 100644 --- a/app/src/main/res/layout/fragment_pwgen.xml +++ b/app/src/main/res/layout/fragment_pwgen.xml @@ -14,14 +14,13 @@ android:paddingTop="@dimen/activity_vertical_margin" tools:context=".MainActivityFragment"> - <EditText + <TextView android:id="@+id/passwordText" android:layout_width="match_parent" android:layout_height="wrap_content" + android:textAppearance="?android:attr/textAppearanceMedium" android:layout_marginBottom="8dp" - android:editable="false" - android:textIsSelectable="true" - android:inputType="textVisiblePassword"/> + android:textIsSelectable="true"/> <LinearLayout android:layout_width="match_parent" |