limit max length of ssid and password

Bug: 2675734
Change-Id: I58bc6b095c3d03fd06e3768b23c32718dd964516
Signed-off-by: jmzhu <jmzhu@marvell.com>
This commit is contained in:
Irfan Sheriff
2010-10-14 11:42:12 -07:00
parent 8d17bc8a43
commit 213494fa24

View File

@@ -46,7 +46,8 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:singleLine="true" android:singleLine="true"
android:inputType="textNoSuggestions" /> android:inputType="textNoSuggestions"
android:maxLength="32" />
<TextView <TextView
style="?android:attr/textAppearanceSmall" style="?android:attr/textAppearanceSmall"
@@ -79,7 +80,8 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:singleLine="true" android:singleLine="true"
android:password="true" /> android:password="true"
android:maxLength="63" />
<TextView android:id="@+id/hint" <TextView android:id="@+id/hint"
style="?android:attr/textAppearanceSmallInverse" style="?android:attr/textAppearanceSmallInverse"