ChipCloud 3 is a fresh rewrite of the original quickly hacked together library. The previous iteration was becoming popular as an easy replacement for a dropdown/spinner with improved UX and more efficient use of screen real estate. ChipCloud 3 has an improved API with a fraction of the code. The biggest change is it's now not a custom Layout, it's a simple helper class that adds Chips to a supplied ViewGroup, complex layout is delegated to dedicated layout libraries such as FlexboxLayout.
Although ChipCloud can be used with any ViewGroup to get the wrapping 'Chip Cloud' that was the original focus of the library you should use Google's FlexboxLayout - see the demo project for a full example.
//To create the same wrapping cloud as previous incarnation use Google's FlexboxLayout:
FlexboxLayout flexbox = (FlexboxLayout) findViewById(R.id.flexbox);
//Create a new ChipCloud with a Context and ViewGroup:
ChipCloud chipCloud = new ChipCloud(this, flexbox);
//Add a single Chip:
chipCloud.addChip("HelloWorld!");
//or pass a List or Array of any Object:
String[] demoArray = getResources().getStringArray(R.array.demo_array);
chipCloud.addChips(demoArray);
Use the ChipCloudConfig builder to customise colors, fonts, and select mode:
FlexboxLayout flexbox = (FlexboxLayout) findViewById(R.id.flexbox);
ChipCloudConfig config = new ChipCloudConfig()
.selectMode(ChipCloud.SelectMode.multi)
.checkedChipColor(Color.parseColor("#ddaa00"))
.checkedTextColor(Color.parseColor("#ffffff"))
.uncheckedChipColor(Color.parseColor("#efefef"))
.uncheckedTextColor(Color.parseColor("#666666"))
.typeface(someCustomeTypeface);
ChipCloud chipCloud = new ChipCloud(this, flexbox, config);
ChipCloud.SelectMode.multi
The default mode; multiple chips can be selected.
ChipCloud.SelectMode.single
Only one chip can be selected at a time.
ChipCloud.SelectMode.mandatory
Similar to a RadioGroup, only one chip can be selected, and once one has been chosen it's not possible to deselect it, you can click on another chip but one will always be checked.
ChipCloud.SelectMode.none
No interaction, the chips just act as feedback for a user (eg. to display a list of tags associated with a news article).
Add jitpack.io to your root build.gradle, eg:
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
}
then add the dependency to your project build.gradle:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.github.fiskurgit:ChipCloud:3.0.2'
}
You can find the latest version in the releases tab above: https://github.com/fiskurgit/ChipCloud/releases
More options at jitpack.io: https://jitpack.io/#fiskurgit/ChipCloud
##Licence
Full licence here: https://github.com/fiskurgit/ChipCloud/blob/master/LICENSE
In short:
The MIT License is a permissive license that is short and to the point. It lets people do anything they want with your code as long as they provide attribution back to you and don’t hold you liable.