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 8960283
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T15:37:46+00:00 2026-06-15T15:37:46+00:00

I have a listview which is build up of two textviews coming from a

  • 0

I have a listview which is build up of two textviews coming from a separate layout file. I use a BaseAdapter to build the list from a JSON file.

I would like the first textview (Caption) to be clickable, if clicked that it shows the second textview (Text), and if clicked again that it hides it.

When I use an onClick (android:onClick="ClText") I get an error. I think I should use something of an onClickListener, but since I’m new to Android I’m not quite sure how to use it.

Can someone help me out with the code please?

  • 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-15T15:37:47+00:00Added an answer on June 15, 2026 at 3:37 pm

    You just need to set the onClickListener for the first item in the getView method of your adapter class that extends BaseAdapter. Here’s an example to illustrate what you’re trying to do.

    public class CustomAdapter extends BaseAdapter{
        private ArrayList<Thing> mThingArray;
    
        public CustomAdapter(ArrayList<Thing> thingArray) {
            mThingArray = thingArray;
        }
    
        // Get the data item associated with the specified position in the data set.
        @Override
        public Object getItem(int position) {
            return thingArray.get(position);
        }
    
        // Get a View that displays the data at the specified position in the data set.
        // You can either create a View manually or inflate it from an XML layout file.
        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
    
            if(convertView == null){
                // LayoutInflater class is used to instantiate layout XML file into its corresponding View objects.
                LayoutInflater layoutInflater = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
                convertView = layoutInflater.inflate(R.layout.one_of_list, null);
            }
    
            TextView captionTextView = (TextView) convertView.findViewById(R.id.caption);
            TextView txt2 = (TextView)findViewById(R.id.text);
    
            captionTextView.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
               if(txt2.getVisibility() == View.INVISIBLE){
               txt2.setVisibility(View.VISIBLE);
            } else {
               txt2.setVisibility(View.INVISIBLE);
            }
           }
        });
    
            return convertView;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a ListView on my checkout page with an ItemTemplate which build up
I have a ListView which displays a list of string values. I want to
I have ListView which shows images from an ImageList. Now wanted to get index
I have a listview which has an extra property which I use to create
I have a ListView which I have bound with a List . If I
I have a ListView which is populated from a string-array resource. I'm trying to
I have a ListView populated by a SimpleAdapter, which gets values from an ArrayList
I have a ListView which is populated using a SimpleCursorAdapter. The row layout is
I have a ListView which extends BaseAdapter . I have a data[] array. The
I have a listview which displays a list of Users (binds to UserListViewModel) -

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.