Skip to main content

Multi-Selection ListView ANDROID with CheckBox

Shaadi.com Indian Matrimonials




Create New Android Project: in res/layout/main.xml


create new layout for list row : in res/layout/list_row.xml


in your Main Activity Class:


Create Class name mItems:


Create New Class name SelectViewHolder:


Create New Class name SelectArrayAdapter:




Download Source Code Click Here :

Check PART2 for more detail.





Shaadi.com Matrimonials

Comments

  1. Thank you! it's awesome.. worked like charm..

    ReplyDelete
  2. Thank you! really it helped me to develop listview with multi selection . I have small doubt ,after pressing menu item also i'm not getting any logs, even i selected same items in that list.i'm getting checked (ArrayList)size as zero.

    just check and please let me known ..

    my mail id : muralivitt@gmail.com

    ReplyDelete
    Replies
    1. it is happened because we add item at on text view click as well as on checkbox click.

      Please check below link there is your solution

      http://dj-android.blogspot.in/2013/02/android-adding-actionbar-navigation.html

      Delete
  3. Hey, i want to add list view with some of item with check box ,some of item with on/off switch and some of item display the next activity when just click on that item.So please give me the source code at my id: brijesh8_11@yahoo.co.in

    ReplyDelete
    Replies
    1. here is your solution. please check it i have developed grid view with check box instead of that you can use list view with row file & check box.

      http://dj-android.blogspot.in/2013/02/android-adding-actionbar-navigation.html

      Delete
  4. This comment has been removed by the author.

    ReplyDelete
  5. Hello All,

    I have added new Post.

    Please check it.

    http://dj-android.blogspot.in/2013/02/multi-selection-listview-android-with.html

    ReplyDelete
  6. Hi

    Do you think it's possible to customize checkboxes with own image ?

    ReplyDelete
    Replies
    1. Hi

      Yes you can do this. Check below links

      http://www.hrupin.com/2011/09/how-to-make-android-checkbox-and-radiobutton-custom-style

      http://stackoverflow.com/questions/10135499/android-checkbox-style

      http://stackoverflow.com/questions/3093099/checkbox-style-in-android

      Delete
  7. Great... Thanks a lot for this...

    ReplyDelete

Post a Comment

Popular posts from this blog

Share Text To Facebook & Twitter ANDROID

Shaadi.com Indian Matrimonials Before Create this app you must Have to create Application on FACEBOOK & TWITTER Download Code

Stop Babysitting your AI Coding Agent Every Single Session

  Watched a video by DSquaredLabs on " No more re-explaining: Give your AI agent a memory graph " — here's what stuck with me and why I think this three-tool system is worth your attention If you work on a large codebase with AI coding tools, you already know the ritual. Open a new chat, paste your file structure, explain your stack, describe how the modules connect — and repeat the whole thing tomorrow. It is not a minor inconvenience. It is a compounding productivity tax that gets worse as your project grows. This article breaks down a three-tool system designed to fix exactly that. If you want the full walkthrough with a live demo on a real monorepo, the video at the bottom covers everything in depth — but the core concepts are worth understanding before you dive in. The Problem With How Most Developers Use AI Today Most AI-assisted coding workflows are missing three things that every good engineering team actually has: A map of the codebase A process for how w...

Android - Notifications - 3 (Applying a big view style to a notification)

Big picture style Bitmap icon1 = BitmapFactory.decodeResource(getResources(), R.drawable.dhaval1); NotificationCompat.Builder mBuilder = new NotificationCompat.Builder( this).setAutoCancel(true) .setContentTitle("DJ-Android notification") .setSmallIcon(R.drawable.ic_launcher).setLargeIcon(icon1) .setContentText("Hello World!"); NotificationCompat.BigPictureStyle bigPicStyle = new NotificationCompat.BigPictureStyle(); bigPicStyle.bigPicture(icon1); bigPicStyle.setBigContentTitle("Dhaval Sodha Parmar"); mBuilder.setStyle(bigPicStyle); // Creates an explicit intent for an Activity in your app Intent resultIntent = new Intent(this, testActivity.class); // The stack builder object will contain an artificial ba...