DO NOT MERGE Proxy and IP fixes
Fix dual display of IP addresses for static IP Fix inputType for proxy and IP fields Add hint texts for IP fields Change-Id: I5b556a07c2a5b69ecec959c933f2872e70496946
This commit is contained in:
committed by
Irfan SHeriff
parent
d61737b560
commit
00615cf5dc
@@ -232,6 +232,7 @@
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:singleLine="true"
|
||||
android:inputType="textNoSuggestions"
|
||||
android:hint="@string/proxy_hostname_hint" />
|
||||
|
||||
<TextView android:layout_width="fill_parent"
|
||||
@@ -242,6 +243,7 @@
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:singleLine="true"
|
||||
android:inputType="number"
|
||||
android:hint="@string/proxy_port_hint" />
|
||||
|
||||
<TextView android:layout_width="fill_parent"
|
||||
@@ -252,6 +254,7 @@
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:singleLine="true"
|
||||
android:inputType="textNoSuggestions"
|
||||
android:hint="@string/proxy_exclusionlist_hint" />
|
||||
|
||||
</LinearLayout>
|
||||
@@ -288,6 +291,7 @@
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:singleLine="true"
|
||||
android:hint="wifi_ip_address_hint"
|
||||
android:inputType="textNoSuggestions" />
|
||||
|
||||
<TextView
|
||||
@@ -299,6 +303,7 @@
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:singleLine="true"
|
||||
android:hint="wifi_gateway_hint"
|
||||
android:inputType="textNoSuggestions" />
|
||||
|
||||
<TextView
|
||||
@@ -310,7 +315,8 @@
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:singleLine="true"
|
||||
android:inputType="textNoSuggestions" />
|
||||
android:hint="wifi_network_prefix_length_hint"
|
||||
android:inputType="number" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="fill_parent"
|
||||
@@ -321,6 +327,7 @@
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:singleLine="true"
|
||||
android:hint="wifi_dns1_hint"
|
||||
android:inputType="textNoSuggestions" />
|
||||
|
||||
<TextView
|
||||
@@ -332,6 +339,7 @@
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:singleLine="true"
|
||||
android:hint="wifi_dns2_hint"
|
||||
android:inputType="textNoSuggestions" />
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
@@ -227,6 +227,7 @@
|
||||
<EditText android:id="@+id/proxy_hostname"
|
||||
style="@style/wifi_item_content"
|
||||
android:hint="@string/proxy_hostname_hint"
|
||||
android:inputType="textNoSuggestions"
|
||||
android:singleLine="true" />
|
||||
</LinearLayout>
|
||||
<LinearLayout style="@style/wifi_item">
|
||||
@@ -237,6 +238,7 @@
|
||||
<EditText android:id="@+id/proxy_port"
|
||||
style="@style/wifi_item_content"
|
||||
android:hint="@string/proxy_port_hint"
|
||||
android:inputType="number"
|
||||
android:singleLine="true" />
|
||||
</LinearLayout>
|
||||
<LinearLayout style="@style/wifi_item">
|
||||
@@ -247,6 +249,7 @@
|
||||
<EditText android:id="@+id/proxy_exclusionlist"
|
||||
style="@style/wifi_item_content"
|
||||
android:hint="@string/proxy_exclusionlist_hint"
|
||||
android:inputType="textNoSuggestions"
|
||||
android:singleLine="true" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
@@ -278,6 +281,7 @@
|
||||
<EditText android:id="@+id/ipaddress"
|
||||
style="@style/wifi_item_content"
|
||||
android:singleLine="true"
|
||||
android:hint="@string/wifi_ip_address_hint"
|
||||
android:inputType="textNoSuggestions" />
|
||||
</LinearLayout>
|
||||
|
||||
@@ -290,6 +294,7 @@
|
||||
<EditText android:id="@+id/gateway"
|
||||
style="@style/wifi_item_content"
|
||||
android:singleLine="true"
|
||||
android:hint="@string/wifi_gateway_hint"
|
||||
android:inputType="textNoSuggestions" />
|
||||
</LinearLayout>
|
||||
|
||||
@@ -302,7 +307,8 @@
|
||||
<EditText android:id="@+id/network_prefix_length"
|
||||
style="@style/wifi_item_content"
|
||||
android:singleLine="true"
|
||||
android:inputType="textNoSuggestions" />
|
||||
android:hint="@string/wifi_network_prefix_length_hint"
|
||||
android:inputType="number" />
|
||||
</LinearLayout>
|
||||
<LinearLayout
|
||||
style="@style/wifi_item" >
|
||||
@@ -313,6 +319,7 @@
|
||||
<EditText android:id="@+id/dns1"
|
||||
style="@style/wifi_item_content"
|
||||
android:singleLine="true"
|
||||
android:hint="@string/wifi_dns1_hint"
|
||||
android:inputType="textNoSuggestions" />
|
||||
</LinearLayout>
|
||||
|
||||
@@ -325,6 +332,7 @@
|
||||
<EditText android:id="@+id/dns2"
|
||||
style="@style/wifi_item_content"
|
||||
android:singleLine="true"
|
||||
android:hint="@string/wifi_dns2_hint"
|
||||
android:inputType="textNoSuggestions" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
Reference in New Issue
Block a user