indeterminate-checkbox


Source link: https://github.com/sevar83/indeterminate-checkbox

indeterminate-checkbox

Android CheckBox and RadioButton with additional 3rd 'indeterminate' state.

Requirements

  • Based on AppCompat library
  • Requires AppCompat theme
  • API 7+ (but tested only on API 10+)

Getting Started

  1. You need to have this in your project's build.gradle file:

    allprojects {
    
      repositories {
    
    jcenter()
    
    maven {
     url "https://jitpack.io" 
    }
    
      
    }
     
    }
    
  2. You need this in your app's module build.gradle file:

    dependencies {
    
      compile 'com.github.sevar83:indeterminate-checkbox:1.0.5@aar' 
    }
    
  3. The Support library's AppCompat theme or its variant must be set for your application or your activity in the manifest:

    <activity
      android:theme="@style/AppTheme"
      ... /> 

Usage

In XML layout

Add this to your layout:

<com.buildware.widget.indeterm.IndeterminateCheckBox
  android:id="@+id/indeterm_checkbox"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:text="My IndeterminateCheckBox"
  app:indeterminate="true"/>

 <!-- Add the line above if you want it to be initially indeterminate,  
 otherwise it acts as a plain checkbox. -->

Listening for state changes

Both changes of the 'checked' state and the 'indeterminate' state can be received in one listener. So, the OnCheckedChangeListener is not needed at all. The OnStateChangedListener is called just after the standard OnCheckedChangeListener.

IndeterminateCheckBox indetermCheck; ... indetermCheck.setOnStateChangedListener(new OnStateChangedListener() {

  @Override
  public void onStateChangedListener(IndeterminateCheckBox check, @Nullable Boolean state) {

if (state == null) {

 // The new state is 'indeterminate'

}
 else if (state) {

 // The new state is 'checked'

}
 else {

 // The new state is 'unchecked'

}

  
}
 
}

State

Note that when user clicks an checkbox in 'indeterminate' state it always becomes 'checked' no matter of its current 'checked' state. Its 'checked' state is not getting toggled, it becomes 'checked'. Clicking it again and it's becomes 'unchecked'. Then another click toggles it back to 'checked' state and so on. In other words user does not toggle all three states one after another. With normal operations (clicks, keypresses) it's not possible. This behaviour is normal and follows various UX guidelines. However switching back to 'indeterminate' state is possible programatically if you decide it is appropriate (see next).

Controlling the state programmatically

Switching to 'indeterminate' state at any time is possible with:

indetermCheck.setIndeterminate(true);
 // or  indetermCheck.setState(null);

Switching from 'indeterminate' state to 'determinate' state:

indetermCheck.setChecked(true);
 // or false // or indetermCheck.setState(true);

// or false

Checking the state

indetermCheck.isIndeterminate();
 // or  indetermCheck.getState();

Known Issues

  • IndeterminateRadionButton is not animated. In order to make it animated I had to include about 120 PNG files from the Android Lollipop framework. Unlike the CheckBox widget the RadioButton has no vector animations in Lollipop yet. They still use PNGs. When (and if) Google switches to vectors I'm going to import them here too.
  • Highlighting on pre-Lollipop seems not working or missing

Todo

  • IndeterminateCheckedTextView - would be valuable for using in dialogs
  • Write some tests

License

Apache License, Version 2.0

Resources

QuiltView displays views of different sizes in a scrollable grid.

Robolectric is a unit test framework that de-fangs the Android SDK jar so you can test-drive the development of your Android app. Tests run inside the JVM on your workstation in seconds.

osmdroid is a (almost) full/free replacement for Android's MapView (v1 API) class. It also includes a modular tile provider system with support for numerous online and offline tile sources and overlay support with built-in overlays for plotting icons, tracking location, and drawing shapes.

A carefully crafted Android framework that includes: DI, ORM, EventBus, JSON (de)serialization feature, improved AsyncTask & IntentService, Logger, RESTClient, ImageFetcher, and a lot of utils.

Android common lib, include ImageCache, HttpCache, DropDownListView, DownloadManager, Utils and so on.

An HTTP & SPDY client for Android and Java applications.

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