mirror of
https://github.com/moparisthebest/Yaaic
synced 2024-11-10 11:15:09 -05:00
Disabled autocompleting on some TextView's.
This commit is contained in:
parent
5485213e52
commit
493f9f758c
@ -43,7 +43,8 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
|
||||
android:layout_height="wrap_content"
|
||||
android:singleLine="true"
|
||||
android:text="#"
|
||||
android:layout_weight="1" />
|
||||
android:layout_weight="1"
|
||||
android:inputType="textNoSuggestions" />
|
||||
<Button
|
||||
android:id="@+id/add"
|
||||
android:layout_width="wrap_content"
|
||||
|
@ -43,7 +43,8 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
|
||||
android:layout_height="wrap_content"
|
||||
android:singleLine="true"
|
||||
android:text="/"
|
||||
android:layout_weight="1" />
|
||||
android:layout_weight="1"
|
||||
android:inputType="textNoSuggestions" />
|
||||
<Button
|
||||
android:id="@+id/add"
|
||||
android:layout_width="wrap_content"
|
||||
|
@ -53,7 +53,8 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
|
||||
android:contentDescription="@string/server_host"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:singleLine="true" />
|
||||
android:singleLine="true"
|
||||
android:inputType="textNoSuggestions" />
|
||||
<TextView
|
||||
android:text="@string/server_port"
|
||||
android:layout_width="fill_parent"
|
||||
@ -65,7 +66,9 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
|
||||
android:layout_height="wrap_content"
|
||||
android:singleLine="true"
|
||||
android:minEms="6"
|
||||
android:text="6667" />
|
||||
android:text="6667"
|
||||
android:numeric="integer"
|
||||
android:maxLength="5" />
|
||||
<TextView
|
||||
android:text="@string/server_password"
|
||||
android:layout_width="fill_parent"
|
||||
|
Loading…
Reference in New Issue
Block a user