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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T22:29:55+00:00 2026-05-30T22:29:55+00:00

I’m using an ArrayAdapter with my ListView: What I’m trying to achive: I’m displaying

  • 0

I’m using an ArrayAdapter with my ListView:

  • What I’m trying to achive:
    I’m displaying a (endless scrolling) listview with lot’s of images and captions. Captions are only allowed to have one line. A trimmed caption (that is actually longer than one line) has an onClickListener that removes the one-line-limitation to display the whole caption (setSingleLine( false ), setEllipsize( null )).

  • The problem I’m facing: When I click on one of the captions chances are that some other captions are affected aswell. So when I click a caption and keep scrolling down I’ll mostly likely discover captions that are already expanded, but that haven’t been clicked. I assume that it’s caused by the adapter’s view-reusage, but I’m not looking through that whole concept yet, since I’ve just started programming in the android enviroment..

  • The Code:

XML-Layout

<LinearLayout ... >

    ...

    <com.app.views.CaptionView
        android:id="@+id/caption" ... />

    ...

</LinearLayout>

ArrayAdapter

public class ImageArrayAdapter extends ArrayAdapter<Image>
{
    private static class ViewHolder
    {
        public TextView     caption;    
        ...
    }

    private final List<Image>   images;

    private LayoutInflater      inflater;

    ...

    @Override
    public View getView( int position, View contentView, ViewGroup parent )
    {
        ViewHolder holder;

        if( contentView == null )
        {
            holder = new ViewHolder();
            contentView = inflater.inflate( R.layout.image, null );

            holder.caption = (TextView) contentView.findViewById( R.id.caption );
            ...

            Typeface font = Typeface.createFromAsset( getContext().getAssets(), "fonts/EXO-ITALIC.TTF" );
            holder.caption.setTypeface( font );

            contentView.setTag( holder );
        }
        else
        {
            holder = (ViewHolder) contentView.getTag();
        }

        Image image = images.get( position );

        holder.caption.setText( image.getTitle() );
        ...

        return contentView;
    }
}

CaptionView

public class CaptionView extends TextView
{
    private boolean modified    = false;

    ...

    @Override
    protected void onDraw( Canvas canvas )
    {
        super.onDraw( canvas );

        if( !modified && getLineCount() > 1 )
        {
            modified = true;
            setClickable( true );
            setEllipsize( TruncateAt.END );
            setSingleLine( true );
            setOnClickListener( onClickListener );
        }
    }

    private OnClickListener onClickListener = new OnClickListener()
    {
        public void onClick( View view )
        {
            TextView caption = (TextView) view;

            if( caption.getLineCount() == 1 )
            {
                caption.setSingleLine( false );
                caption.setEllipsize( null );
            }
            else
            {
                caption.setSingleLine( true );
                caption.setEllipsize( TruncateAt.END );
            }
        }
    };
}
  • 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-05-30T22:29:57+00:00Added an answer on May 30, 2026 at 10:29 pm

    It probably is a result of the inflating views so the easiest solution would be to set

    setSingleLine( true ); setEllipsize( where );
    

    in your getView() method.

    However this will result in a view becoming ‘unexpanded’ when it scrolls off the screen. To deal with that I recommend a separate data structure of some sort that keeps a boolean telling whether or not the view has been expanded. Maybe a hashMap or an array depending on what information you have about the view in getView().

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I have thousands of HTML files to process using Groovy/Java and I need to
I am trying to loop through a bunch of documents I have to put
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
That's pretty much it. I'm using Nokogiri to scrape a web page what has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and
I am trying to understand how to use SyndicationItem to display feed which is
I have a jquery bug and I've been looking for hours now, I can't
I am reading a book about Javascript and jQuery and using one of the

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.