Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

Awesome Lists containing this project

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 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.
```