Android Json Wizard


Source link: https://github.com/vijayrawatsan/android-json-form-wizard

Android Json Wizard

Android Json Wizard is a library for creating beautiful form based wizards within your app just by defining json in a particular format.

Demo

Demo Youtube Link

Usage

Json Structure

Form json should consist of steps and fields.

Steps

Step directly corresponds to a fragment(or a page) in wizard. It consists of different fields(array of fields), title and next step.

 {

"step1":{

  "fields":[

{

 "key":"name",

 "type":"edit_text",

 "hint":"Enter Your Name"

}
,

{

 "key":"email",

 "type":"edit_text",

 "hint":"Enter email address"

}
,

{

 "key":"labelBackgroundImage",

 "type":"label",

 "text":"Choose Background Image"

}
,

{

 "key":"chooseImage",

 "type":"choose_image",

 "uploadButtonText":"Choose"

}

  ],

  "title":"Step 1",

  "next":"step2"

 
}

  
}

Supported fields

EditText

 {

"key":"name",

"type":"edit_text",

"hint":"Enter Your Name"
  
}

key - must be unique in that particular step.

type - must be edit_text for EditText.

hint - hint for EditText.

value - will be the value present in the editText after completion of wizard

EditText Required Validation
"v_required" : {

"value" : "true",

"err" : "Please enter some value this is a required field."

 
}
EditText Min length Validation
"v_min_length" : {

"value" : "3",

"err" : "Min length should be at least 3"

  
}
EditText Max Length Validation
"v_max_length" : {

"value" : "30",

"err" : "Max length is 30"

  
}
EditText Email Validation
"v_email" : {

"value" : "true",

"err" : "Not an email."

  
}
EditText Regex Validation
"v_email" : {

"value" : "your-regex-here",

"err" : "Your message here."

  
}

Label

 {

"key":"labelHeaderImage",

"type":"label",

"text":"Choose Background Image"
  
}

key - must be unique in that particular step.

type - must be label for Label.

text - text for Label.

ImagePicker

 {

"key":"chooseImage",

"type":"choose_image",

"uploadButtonText":"Choose"
  
}

key - must be unique in that particular step.

type - must be choose_image for ImagePicker.

uploadButtonText - text for Button of ImagePicker.

value - will be the path of chosen image on external storage

ImagePicker Required Validation
"v_required" : {

"value" : "true",

"err" : "Please enter some value this is a required field."

 
}

CheckBox (can be used for single/multiple CheckBoxes)

 {

"key":"checkData",

"type":"check_box",

"label":"Select multiple preferences",

"options":[

 {

  "key":"awesomeness",

  "text":"Are you willing for some awesomeness?",

  "value":"false"

 
}
,

 {

  "key":"newsletter",

  "text":"Do you really want to opt out from my newsletter?",

  "value":"false"

 
}

]
  
}
 

key - must be unique in that particular step.

type - must be check_box for CheckBox.

label - text for header of CheckBox.

options - options for CheckBox.

key(in options) - must be unique in options.

text(in options) - text fot the CheckBox.

value(in options) - true/false.

CheckBox Required Validation

Not supported yet.

Spinner


  {

 "key":"name",

 "type":"spinner",

 "hint":"Name Thy House"

 "values":["Stark", "Targeriyan", "Lannister"]

}

key - must be unique in that particular step.

type - must be spinner

hint - hint for Spinner.

values - Array of Strings.

value - will be the value present in the spinner after completion of wizard

Spinner Required Validation
"v_required" : {

"value" : "true",

"err" : "Please enter some value this is a required field."

 
}

RadioButton (can be used for single/multiple RadioButtons)

{

  "key":"radioData",
  "type":"radio",
  "label":"Select one item from below",
  "options":[

{

 "key":"areYouPro",

 "text":"Are you pro?"

}
,

{

 "key":"areYouAmature",

 "text":"Are you amature?"

}
,

{

 "key":"areYouNovice",

 "text":"Are you novice?"

}

  ],
  "value":"areYouNovice" 
}

key - must be unique in that particular step.

type - must be radio for RadioButton.

label - text for header of RadioButton.

value - must be key of one of the options which is selected/ or empty if no option is selected.

options - options for RadioButton.

key(in options) - must be unique in options.

text(in options) - text fot the RadioButton.

RadioButton Required Validation

Not supported yet.

Demo Input Json (Complete)

{

  "count":"3",
  "step1":{

"fields":[

 {

  "key":"name",

  "type":"edit_text",

  "hint":"Enter Your Name",

  "v_min_length":{
  "value" : "3",

 "err" : "Min length should be at least 3"

}
,

  "v_max_length":{
  "value" : "10",

"err" : "Max length can be at most 10."

  
}

 
}
,

 {

  "key":"email",

  "type":"edit_text",

  "hint":"Enter Your Email",

  "v_email":{
  "value" : "true",

"err" : "Not an email."

  
}

 
}
,

 {

  "key":"labelBackgroundImage",

  "type":"label",

  "text":"Choose Background Image"

 
}
,

 {

  "key":"chooseImage",

  "type":"choose_image",

  "uploadButtonText":"Choose",

  "v_required":{
  "value" : "true",

"err" : "Please choose an image to proceed."

  
}

 
}
,

 {

  "key":"house",

  "type":"spinner",

  "hint": "Name Thy House",

  "values":["Stark", "Targeriyan", "Lannister"],

  "v_required":{
  "value" : "true",

"err" : "Please choose a value to proceed."

  
}

 
}

],

"title":"Step 1 of 3",

"next":"step2"
  
}
,
  "step2":{

"fields":[

 {

  "key":"name",

  "type":"edit_text",

  "hint":"Enter Country"

 
}
,

 {

  "key":"checkData",

  "type":"check_box",

  "label":"Select multiple preferences",

  "options":[

{

 "key":"awesomeness",

 "text":"Are you willing for some awesomeness?",

 "value":"false"

}
,

{

 "key":"newsletter",

 "text":"Do you really want to opt out from my newsletter?",

 "value":"false"

}

  ]

 
}
,

 {

  "key":"radioData",

  "type":"radio",

  "label":"Select one item from below",

  "options":[

{

 "key":"areYouPro",

 "text":"Are you pro?"

}
,

{

 "key":"areYouAmature",

 "text":"Are you amature?"

}
,

{

 "key":"areYouNovice",

 "text":"Are you novice?"

}

  ],

  "value":"areYouNovice"

 
}

],

"title":"Step 2 of 3",

"next":"step3"
  
}
,
  "step3":{

"fields":[

 {

  "key":"anything",

  "type":"edit_text",

  "hint":"Enter Anything You Want"

 
}

],

"title":"Step 3 of 3"
  
}
 
}

Starting form activity with your json

 Intent intent = new Intent(context, JsonFormActivity.class);

  String json = "Your complete JSON";
  intent.putExtra("json", json);

  startActivityForResult(intent, REQUEST_CODE_GET_JSON);

And receive result populated json in onActivityResult()

@Override protected void onActivityResult(int requestCode, int resultCode, Intent data) {

  if (requestCode == REQUEST_CODE_GET_JSON && resultCode == RESULT_OK) {

Log.d(TAG, data.getStringExtra("json"));

  
}

  super.onActivityResult(requestCode, resultCode, data);
 
}

Output Json (of demo input json)

{

  "count":"3",
  "step1":{

"fields":[

 {

  "key":"name",

  "type":"edit_text",

  "hint":"Enter Your Name",

  "value":"Vijay"

 
}
,

 {

  "key":"email",

  "type":"edit_text",

  "hint":"Enter Your Email",

  "value":"[email protected]"

 
}
,

 {

  "key":"labelBackgroundImage",

  "type":"label",

  "text":"Choose Background Image"

 
}
,

 {

  "key":"chooseImage",

  "type":"choose_image",

  "uploadButtonText":"Choose",

  "value":"\/storage\/emulated\/0\/Pictures\/Wally\/10017.png"

 
}

],

"title":"Step 1 of 3",

"next":"step2"
  
}
,
  "step2":{

"fields":[

 {

  "key":"name",

  "type":"edit_text",

  "hint":"Enter Country",

  "value":"India"

 
}
,

 {

  "key":"checkData",

  "type":"check_box",

  "label":"Select multiple preferences",

  "options":[

{

 "key":"awesomeness",

 "text":"Are you willing for some awesomeness?",

 "value":"true"

}
,

{

 "key":"newsletter",

 "text":"Do you really want to opt out from my newsletter?",

 "value":"false"

}

  ]

 
}
,

 {

  "key":"radioData",

  "type":"radio",

  "label":"Select one item from below",

  "options":[

{

 "key":"areYouPro",

 "text":"Are you pro?"

}
,

{

 "key":"areYouAmature",

 "text":"Are you amature?"

}
,

{

 "key":"areYouNovice",

 "text":"Are you novice?"

}

  ],

  "value":"areYouPro"

 
}

],

"title":"Step 2 of 3",

"next":"step3"
  
}
,
  "step3":{

"fields":[

 {

  "key":"anything",

  "type":"edit_text",

  "hint":"Enter Anything You Want",

  "value":"anything"

 
}

],

"title":"Step 3 of 3"
  
}
 
}

Including in your project

gradle:

Step 1. Add the JitPack repository to your build file

repositories {

  maven {

url "https://jitpack.io"
  
}
 
}

Step 2. Add the dependency in the form

dependencies {

  compile 'com.github.vijayrawatsan:android-json-form-wizard:1.0' 
}

maven:

Step 1. Add the JitPack repository to your build file

<repository>
  <id>jitpack.io</id>
  <url>https://jitpack.io</url> </repository>

Step 2. Add the dependency in the form

<dependency>
  <groupId>com.github.vijayrawatsan</groupId>
  <artifactId>android-json-form-wizard</artifactId>
  <version>1.0</version> </dependency>

TODOs

  • Support validation for Checkbox and RadioButton.
  • Improve image picker UI.

Contributing

Contributions welcome via Github pull requests.

Credits

Thanks!

License

This project is licensed under the MIT License. Please refer the License.txt file.

Resources

Noodle is a very simple object storage and persistence library for Android.

No schema, no relations, no consistency rules, no thread-contained objects. You can use it as a key-value storage or collections - which are similar to tables, but not really.

Simple custom view of a beating heart using scaling animation. Has option to set the duration of animation based on BPM (beats per minute).

Are you tired of creating a new DialogFragment for each Dialog that you want to display?

This is an Android library that provides a simple implementation of a DialogFragment. It allows to define the content of the Dialog (and its button listeners) without having to create a new DialogFragment subclass.

Android App starter based on Android + MVP + Dagger2 + RxJava2 + Robolectric + Espresso + Mockito + JaCoCo.

Floating-ArcMenu A prety menu for all application

Android floating arc menu which reacts on scrolling events. Becomes visible when an attached target is scrolled up and invisible when scrolled down.

Ever get stuck with iOS image resources? Rather than write your own script, use this one to rename and move iOS image resources so they work for Android. Now converting iOS resources to Android ones is easy!

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes