All Projects → nntuyen → auto-fill-edit-text

nntuyen / auto-fill-edit-text

Licence: Apache-2.0 License
This custom EditText can suggest and fill text defined before.

Programming Languages

java
68154 projects - #9 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to auto-fill-edit-text

Freepager
ViewPagers library for Android
Stars: ✭ 461 (+1673.08%)
Mutual labels:  view, custom-view
Creditcardview
💳 CreditCardView is an Android library that allows developers to create the UI which replicates an actual Credit Card.
Stars: ✭ 744 (+2761.54%)
Mutual labels:  view, custom-view
Stevia
🍃 Concise Autolayout code
Stars: ✭ 3,182 (+12138.46%)
Mutual labels:  view, auto
Uilibrary
平时项目开发中写的自定义Drawable、View和Shape
Stars: ✭ 260 (+900%)
Mutual labels:  view, custom-view
Mkloader
Beautiful and smooth custom loading views
Stars: ✭ 1,377 (+5196.15%)
Mutual labels:  view, custom-view
Iconswitch
🍭 Custom Android Switch widget
Stars: ✭ 874 (+3261.54%)
Mutual labels:  view, custom-view
Easysignseekbar
本库主要提供一个漂亮而强大的自定义SeekBar,进度变化由提示牌 (sign)展示,具有强大的属性设置,支持设置section(节点)、mark(标记)、track(轨迹)、thumb(拖动块)、progress(进度)、sign(提示框)等功能
Stars: ✭ 629 (+2319.23%)
Mutual labels:  view, custom-view
Custom-Grid-View
Custom Drag and Drop Grid for Home Assistant
Stars: ✭ 103 (+296.15%)
Mutual labels:  view, custom-view
Meter Number Picker
The android library that provides a simple and customizable NumberPicker styled as meter.
Stars: ✭ 96 (+269.23%)
Mutual labels:  view, custom-view
Kvconstraintkit
An Impressive Auto Layout DSL for iOS, tvOS & OSX. & It is written in pure swift.
Stars: ✭ 91 (+250%)
Mutual labels:  view, auto
ProgressableImageView
Change your users progress capability with ProgressableImageView
Stars: ✭ 86 (+230.77%)
Mutual labels:  view, custom-view
SkeletonPlaceholderView
A library for creating dynamic skeleton view
Stars: ✭ 25 (-3.85%)
Mutual labels:  view, custom-view
kirby-blade
Enable Laravel Blade Template Engine for Kirby 3
Stars: ✭ 20 (-23.08%)
Mutual labels:  view
WWDC
🌈 𝐖𝐖𝐃𝐂 𝐒𝐞𝐬𝐬𝐢𝐨𝐧 𝐍𝐨𝐭𝐞𝐬 👩🏻‍💻 ✨
Stars: ✭ 31 (+19.23%)
Mutual labels:  auto
PassCodeText
A customised EditText view serving the purpose of taking numeric One Time Password from a user. With stunning animation, and high customizability.
Stars: ✭ 105 (+303.85%)
Mutual labels:  custom-view
MutativeFab
This is animating floating action button with text
Stars: ✭ 54 (+107.69%)
Mutual labels:  custom-view
GraphView
Android GraphView is used to display data in graph structures.
Stars: ✭ 952 (+3561.54%)
Mutual labels:  view
react-native-responsive-image-view
React Native component for scaling an Image within the parent View
Stars: ✭ 152 (+484.62%)
Mutual labels:  view
Animations
Beautiful animations from AOSP
Stars: ✭ 35 (+34.62%)
Mutual labels:  view
autumn
采用Spring、Spring Boot、Redis、MyBatis、Shiro、Druid框架开发,搭载mysql数据。 如果你厌烦了MyBatis中需要手动创建表的事情,这个项目非常适合你,自动为你生成表。 从此你不在需要导入sql文件了,项目初始化变得异常简单,结构清晰,易于开发,真正拿来可用。 全注解MyBatis开发,没有任何mapper文件,一切sql 映射都用代码实现,全程无xml配置,对xml编写mapper有恐惧症的人的福音。 提供双向生成功能: 实体类自动生成数据库表,全过程不需要任何SQL语句,所有表自动生成 通过表生成基础结构代码,生成代码中已包含CRUD功能,表级别的API接口全部都有 基本实例数据全自动通过代码初始化,无需干预 仅仅只需要修改数据库连接地址,…
Stars: ✭ 28 (+7.69%)
Mutual labels:  auto

Auto Fill EditText

Build Status

You don't need to type the whole text. You just type some and it will suggest the remaining part.

Usage

Step 1: Define your suggestions list In Java code

editText.addSuggestions(Arrays.asList("hotmail.com", "microsoft.com"));

or in xml

<resources>
  <string-array name="emails">
    <item>tuyenmonkey.com</item>
    <item>tiki.vn</item>
    <item>gmail.com</item>
    <item>yahoo.com</item>
  </string-array>
</resources>

Step 2: Include view in your layout. At this time, I support 2 modes. The default one is normal that will suggest the whole text and the email one that will suggest the domain after @.

<com.tuyenmonkey.AutoFillEditText
      android:id="@+id/afetEmail"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      app:mode="email"
      app:suggestions="@array/emails"
      />

Download

Gradle:

dependencies {
  compile 'com.tuyenmonkey:auto-fill-edit-text:1.0.0'
}

Snapshots of the development version are available in Sonatype's snapshots repository.

License

Copyright 2017 Tuyen Monkey

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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].