Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/KeithYokoma/AccountAutoCompleteEditText
Simple extension for account suggestion and auto completion.
https://github.com/KeithYokoma/AccountAutoCompleteEditText
Last synced: 2 months ago
JSON representation
Simple extension for account suggestion and auto completion.
- Host: GitHub
- URL: https://github.com/KeithYokoma/AccountAutoCompleteEditText
- Owner: KeithYokoma
- License: apache-2.0
- Created: 2014-03-05T02:16:33.000Z (almost 11 years ago)
- Default Branch: develop
- Last Pushed: 2014-12-16T15:09:02.000Z (about 10 years ago)
- Last Synced: 2023-06-30T19:04:52.085Z (over 1 year ago)
- Language: Java
- Size: 353 KB
- Stars: 100
- Watchers: 8
- Forks: 17
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-android-ui - https://github.com/KeithYokoma/AccountAutoCompleteEditText
- awesome-android-ui - https://github.com/KeithYokoma/AccountAutoCompleteEditText
README
# AccountAutoCompleteEditText
[![Gitter](http://img.shields.io/badge/Gitter-Join%20Chat-brightgreen.svg?style=flat)](https://gitter.im/KeithYokoma/AccountAutoCompleteEditText?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-AccountAutoCompleteEditText-brightgreen.svg?style=flat)](https://android-arsenal.com/details/1/1232)
[![License](http://img.shields.io/badge/License-Apache%202-brightgreen.svg?style=flat)](https://github.com/KeithYokoma/Fit/blob/master/LICENSE.md)Just a simple implementation for use of auto complete text view with device account suggestion
## Usage
Just simply put an custom view as below.
```xml
```
`AccountAutoCompleteEditText` has a custom attribute of `accountType`.
This attribute accepts any of the following value.| Value | Meaning |
|-------|---------|
| `any` | Show the candidate account of all type. |
| `email` | Show the candidate account using email address. |
| `phoneNumber` | Show the candidate account using phone number. |## Sample Application
Sample app can be downloaded from [here](https://deploygate.com/distributions/7ac40a3232ff1fb7afceb7c527d6667d11f840ff).
## Download
Via Gradle
```groovy
repositories {
mavenCentral()
}
android {
dependencies {
compile 'com.github.keithyokoma:AccountAutoCompleteEditText:1.0.0'
}
}
```## TODO
- Customize adapter view layout
## License
```
Copyright (C) 2014 KeithYokoma. All rights reserved.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 athttp://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.
```