GithubHelp home page GithubHelp logo

sathiamour / material-singleinputform Goto Github PK

View Code? Open in Web Editor NEW

This project forked from heinrichreimer/material-singleinputform

0.0 2.0 0.0 508 KB

A single EditText instead of a classical form. Library that implements flavienlaurent's singleinputform

Java 100.00%

material-singleinputform's Introduction

material-singleinputform

Android Arsenal

A single EditText instead of a classical form.

This Library is a library implementation of flavienlaurent's "Single input form"

Very inspired by the Minimal Format Interface.

Implement any form with only one EditText. The idea here is to pack a multiple input form in one field. As a result, the user input is easier and a more fluent process.

Also, TextSwitcher got completely rediscovered to animate the form: title, error message. It's very basic but simple to use.

Here is a video demonstrating a sample form: http://youtu.be/A99g6NDvn_w

Information

I'm currently not actively developing this library because of school work. Until August I'll only merge pull requests. Thanks for your patience.

Demo

A demo app is available on Google Play:

Get it on Google Play

Screenshots

Checkbox input E-mail input Password input
Checkbox input E-mail input Password input
CheckBoxStep.java TextStep.java TextStep.java

Dependency

material-singleinputform is available on Maven Central

Gradle dependency:

dependencies {
    compile 'com.heinrichreimersoftware.singleinputform:library:2.0.2'
}

Get the latest dependency with "Gradle, please"

How-To-Use

Step 1: Your Activity must extend SingleInputFormActivity:

public class MainActivity extends SingleInputFormActivity {
    //...
}

Step 2: Implement abstract methods:

public class MainActivity extends SingleInputFormActivity{
    private static final String DATA_KEY_EXAMPLE = "example";
    
    @Override
    protected List<Step> getSteps(Context context){
        List<Step> steps = new ArrayList<Step>();
        
        steps.add(
            new TextStep(context, DATA_KEY_EXAMPLE, InputType.TYPE_CLASS_TEXT, R.string.example, R.string.example_error, R.string.example_details)
        );
        
        //Add more steps here...
        
        return steps;
    }
    
    @Override
    protected void onFormFinished(Bundle data){
        //Get the form data
        String text = TextStep.text(data, DATA_KEY_EXAMPLE);
        //...
    }
}

Step 3: Theme:

<style name="YourThemeForSingleInputFormActivity" parent="Theme.AppCompat.Light.NoActionBar">

    <!-- Used for: input field background -->
    <item name="colorPrimary">@color/material_bordeaux_500</item>

    <!-- Used for: form progress color, status bar color (API 21+) -->
    <item name="colorPrimaryDark">@color/material_bordeaux_700</item>

    <!-- Used for: title text color, error text color -->
    <item name="android:textColorPrimary">@color/material_bordeaux_800</item>

    <!-- Used for: details text color, step indicator text color -->
    <item name="android:textColorSecondary">@color/material_black_54</item>

    <!-- Used for: input text color, input widget color -->
    <item name="android:textColorPrimaryInverse">@color/material_white_100</item>

    <!-- Used for: input widget color -->
    <item name="android:textColorSecondaryInverse">@color/material_white_70</item>

</style>

Changes

  • Version 2.0:
    • CheckBoxStep (#6)
    • SeekBarStep (#6)
    • Material design
    • Simplified themes (see the tutorial above)
    • Fixed bug #4
    • Fixed bug #5
  • Version 1.0:
    • Initial release

Open source libraries

material-singleinputform uses the following open source libraries or files:

License

Copyright 2015 Heinrich Reimer

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.

material-singleinputform's People

Contributors

heinrichreimer avatar

Watchers

James Cloos avatar sathiamour avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.