
Product
Introducing Rust Support in Socket
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
io.apptik.widget:multiselectspinner
Advanced tools
Multi functional and selectable spinner for Android
Multi functional and selectable spinner for Android
##Download
Find the latest JARs or grab via Maven:
<dependency>
<groupId>io.apptik.widget</groupId>
<artifactId>multiselectspinner</artifactId>
<version>1.0.11</version>
</dependency>
or Gradle:
compile 'io.apptik.widget:multiselectspinner:1.0.11'
Downloads of the released versions are available in Sonatype's releases
repository.
Snapshots of the development versions are available in Sonatype's snapshots
repository.
multiselectspinner requires at minimum Java 7 or Android SDK 15.
<io.apptik.widget.multiselectspinner.MultiSelectSpinner
android:id="@+id/multiselectSpinner"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
ArrayList<String> options = new ArrayList<>();
options.add("1");
options.add("2");
options.add("3");
options.add("A");
options.add("B");
options.add("C");
MultiSelectSpinner multiSelectSpinner = (MultiSelectSpinner) v.findViewById(R.id.multiselectSpinner);
ArrayAdapter<String> adapter = new ArrayAdapter <String>(getActivity(), android.R.layout.simple_list_item_multiple_choice, options);
multiSelectSpinner
.setListAdapter(adapter, "All " +
" Types", "none", new MultiSelectSpinner.MultiSpinnerListener() {
@Override
public void onItemsSelected(boolean[] checkedItems) {
}
})
.setSelectAll(true)
.setMinSelectedItems(1);
FAQs
Multi functional and selectable spinner for Android
We found that io.apptik.widget:multiselectspinner demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.