我看到TextView
的inputType为"textPostalAddress"
。他们在文档(http://developer.android.com/guide/topics/ui/controls/text.html中显示了此示例。)
<EditText
android:id="@+id/postal_address"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/postal_address_hint"
android:inputType="textPostalAddress|
textCapWords|
textNoSuggestions" />
我找不到任何可以解释验证此类字段的推荐方法的内容。我知道如何使用TextWatcher
知道何时验证。我问的是如何实际验证地址。
由于用户在世界上的位置,我担心地址格式的差异。我希望谷歌能够预见到这种复杂性并为开发人员提供了一些东西。
如果没有验证器,那么有什么用呢?从我的测试来看,它并没有以任何明显的方式改变这个领域。