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

Android - Google MAP V2 PART 3 (add Polyline)

Download Full Code  of  PART-1 , 2 , 3 , 4 Before go ahead Please look in to PART-1 & PART-2 I have just modify Main Activity class: package com.djandroid.mapsv2; import android.graphics.Color; import android.os.Bundle; import android.support.v4.app.FragmentActivity; import android.support.v4.app.FragmentManager; import com.google.android.gms.maps.GoogleMap; import com.google.android.gms.maps.GoogleMap.OnMapClickListener; import com.google.android.gms.maps.GoogleMap.OnMarkerClickListener; import com.google.android.gms.maps.SupportMapFragment; import com.google.android.gms.maps.model.LatLng; import com.google.android.gms.maps.model.Marker; import com.google.android.gms.maps.model.MarkerOptions; import com.google.android.gms.maps.model.Polyline; import com.google.android.gms.maps.model.PolylineOptions; public class MainActivity extends FragmentActivity { private GoogleMap MAP; private boolean markClic...

Android show Data from Sqlite DB into Grid View

Shaadi.com Matrimonials Shaadi.com Indian Matrimonials Your Main Activity class package com . Sqlite_grid_view ; import java . util . ArrayList ; import java . util . List ; import android . app . Activity ; import android . os . Bundle ; import android . util . Log ; import android . view . View ; import android . widget . AdapterView ; import android . widget . AdapterView . OnItemClickListener ; import android . widget . ArrayAdapter ; import android . widget . GridView ; import android . widget . TextView ; import android . widget . Toast ; public class AndroidSQLiteTutorialActivity extends Activity { private GridView gridView ; public static ArrayList < String > ArrayofName = new ArrayList < String >(); /** Called when the activity is first created. */ @ Override public void onCreate ( Bundle savedInstanceState ) { super . onCreate ( savedInstanceState ); setContentView ( R . l...

Connecting mysql Database in ANDROID using PHP & JSON

 To implement this tutorial you should have basic knowledge of how to run PHP script and start server.  If we talk about client-server architecture, client is Android device and in server side there is a combination of PHP Script and MySQL. In short, PHP Script sits in middle as shown in image. Lets suppose that we have a MySQL database named Employee, and a table int created, with the following SQL: CREATE TABLE `employee` (   `emp_id` int(11) NOT NULL auto_increment,   `emp_name` varchar(100) NOT NULL,   PRIMARY KEY  (`emp_id`) ) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; The PHP code will be very simple: Now Create Android Project :  The Android part is only a bit more complicated: -use a HttpPost to get the data -convert response to string -parse JSON data in to List In Your First Activity : O/P :