10 2013 档案
摘要:AutoCompleteTextView是自动完成输入内容控件其常用属性定义如下其中android:completionThreshold定义了从第几个字符开始显示候补列表默认值为2使用例:AutoCompleteTextView mPlace = (AutoCompleteTextView)findViewById(R.id.mp002_top_place_input);ArrayList result = new ArrayList();result.add("1111111");result.add("1222222");mPlace.setAda
阅读全文
posted @ 2013-10-27 21:45
左眼跳跳