Android Data Binding Command


Source link: https://github.com/radzio/android-data-binding-command

Android Data Binding Command

Command design pattern implementation for Android Data Binding

Demo

How to start?

Step 1. Add it in your root build.gradle at the end of repositories:

 allprojects {

repositories {

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

}
  
}

Step 2. Add the dependency

 dependencies {

 compile 'com.github.radzio:android-data-binding-command:1.0.4'  
}

Share this release:

Make sure that you are using Android Data Binding

  • In your main build.gradle you have gradle plugin 1.5.0 or newer:
classpath 'com.android.tools.build:gradle:1.5.0'
  • In your app build.gradle you've enabled databinding:
 dataBinding {

enabled = true
  
}

Add to your code

Modify your layout, add bind:command="@{ viewModel.myCommand } "


  <android.support.design.widget.FloatingActionButton

 bind:command="@{
viewModel.myCommand
}
"

 android:id="@+id/fab"

 android:layout_width="wrap_content"

 android:layout_height="wrap_content"

 android:layout_gravity="bottom|end"

 android:layout_margin="@dimen/fab_margin"

 android:src="@android:drawable/ic_dialog_email"/>

Add in your binding class

 public ICommand myCommand = new Command()
  {

@Override

public void execute()

{

 MainActivityViewModel.this.view.showMessage("Hello from Command!");

}

  
}
;

Command features

Each command implements ICommand interface

 public interface ICommand extends Observable
  {

@Bindable

boolean isEnabled();

  void isEnabled(boolean isEnabled);

  @Bindable

boolean isRefreshing();

  void isRefreshing(boolean isRefreshing);

  void execute();

  
}

You can use isEnabled and isRefreshing properties in your java code and xml layouts:

  <Button

 android:layout_width="wrap_content"

 android:layout_height="wrap_content"

 android:id="@+id/button2"

 android:layout_below="@+id/button"

 bind:command="@{
viewModel.enableButtonCommand
}
"

 android:text="@{
viewModel.buttonCommand.enabled ? `Disable Timer` : `Enable Timer`
}
"

 android:enabled="@{
viewModel.buttonCommand.refreshing == false
}
"

 android:layout_centerHorizontal="true"/>

Resources

A script to generate android assets from a SVG file. Requires inkscape to resize and convert.

android-widget-keyboardless-edittext - as a native Android EditText, except that no keyboard will appear when user interacts with it. All other edit operations still work.

fb-adb is a tool for interacting with Android systems. It does much of what adb does, but with better remote shell support and, hopefully, fewer bugs. Differences between adb and fb-adb are that fb-adb:

  • is binary clean (no LF -> CRLF mangling)
  • transmits and updates window size
  • distinguishes standard output and standard error
  • properly muxes streams with independent flow control
  • allows for ssh-like pty allocation control
  • propagates program exit status instead of always exiting with status 0
  • properly escapes program arguments
  • kills remote program
  • provides a generic facility to elevate to root without re-escaping

AXT

Android eXTentions is a lib for common Android-Code.

The aim of this project is to provide code that is used in a lot of Android-Apps over and over again this way:

  • reduce code in the apps ( -> more readable )
  • deduplicate code and tests ( -> save space & time )

A fast dependency injector for Android and Java.

This project represents Google's fork of Square's Dagger. Google's Dagger fork is intended to vary from Square's project only where features are needed to deviate from Square's feature-set. Google's Dagger should be a drop-in compatible alternative to Square's Dagger, and many features in this fork will, if successful, be merged into the upstream project.

Efforts are made to also keep Google's fork as close in structure to Square's as possible, to facilitate merging and compatibility. Google/dagger will release shortly after Square's releases.

A Java wrapper around Uber API using Retrofit.

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