Skip to content

wudkj/AutoCompleteEditText

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

AutoCompleteEditText

自动补全EditText,我的博客

效果

image

使用方法

<cn.sumile.autocompleteedittext.AutoCompleteEditText
    android:id="@+id/et"
    android:layout_width="match_parent"
    android:layout_height="50dip"
    android:ems="10"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:hint="默认字符" >

    <requestFocus />
</cn.sumile.autocompleteedittext.AutoCompleteEditText>

在代码中的调用

private ArrayList values = new ArrayList();
values.add("baidu.com");
values.add("sumile.cn");
values.add("sunile.cn");
values.add("sunule.cn");
values.add("samile.cn");
values.add("sakile.cn");
et = (SelectText) findViewById(R.id.et);
et.setResultsValues(values);

注意事项:

使用jar包或者单独的AutoCompleteEditText.java文件都可以。

LICENSE

				Copyright   2015    wudkj

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

	http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

自动补全EditText

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages