Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7956255
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T03:56:16+00:00 2026-06-04T03:56:16+00:00

I am working on an android project with many activities and classes. In few

  • 0

I am working on an android project with many activities and classes.

In few of the Layouts, I have a facility in which a user can select mark all so that all the checkboxes get selected.

But, the issue I am facing is I know only the one way (which is too lengthy) to do this – By creating a markall layout for each of those existing layouts, pasting the original layout code in the markall layout code and then giving all checkboxes as checked.
This requires me to create xmls for all unmarkings also for each layout.

Please tell me a way in which I can create one xml for markall which has all checked checkboxes, and then call that layout on top of original layout when mark all is clicked.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T03:56:18+00:00Added an answer on June 4, 2026 at 3:56 am

    Lets assume you have following Layout

    <LinearLayout
       android:id="@+id/checkbox_container"
       ...params>
       <CheckBox ...params/>
       <TextView ...params/>
       <CheckBox ...params/>
       <SomeView ...params/>
       <CheckBox ...params/>
    </LinearLayout>
    

    get your checkBoxLayout like this inside Activity

    LinearLayout container = (LinearLayout)findViewById(R.id.checkbox_container);
    

    Iterate over the childs inside the container like this:

    for (int i = 0; i < container.getChildCount(); i++){
        View v = container.getChildAt(i);
        if (v instanceof CheckBox){
            CheckBox cb = (CheckBox)v;
            // isChecked should be a boolean indicating if every Checkbox should be checked or not
            cb.setChecked(isChecked)
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on an android project, and I have to install it many times
I'm working on an Android project (API level 10) which needs to send and
I am working on an Android project which relies on the unique UID of
I'm working on an android sample project, which makes use of TabActivity. But as
While working on an AppEngine connected Android project, I occasionally have problems with RequestFactory
i am working on a project with many activities but when trying to code
I have been working on one project which is too complex and contain very
I am working on a android project. I n that I have to deal
I am working on an Android project and have a problem with SQLite database
I'm working on an Android Project which has an Android Library Project in his

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.