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

  • Home
  • SEARCH
  • 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 8210341
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T10:02:36+00:00 2026-06-07T10:02:36+00:00

I have a list view with custom sorter (set by ListCollectionView.CustomSort property), however I

  • 0

I have a list view with custom sorter (set by ListCollectionView.CustomSort property), however I would like to insert new items at the top of list view. How can I suppress CustomSort?

I have an idea to tune my sort logic, so newly added item will be the first one, however this solution stinks a little bit.

  • 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-07T10:02:38+00:00Added an answer on June 7, 2026 at 10:02 am

    Why suppress CustomSort? Adapt it for your needs:

    • You could give all new items an extreme value for the property used in IComparer object for sorting, e.G. int.MaxValue or string.Empty.

    • Or create an additional property IsNew and include it into comparing process.

      class MyClass
      {
          public bool IsNew { get; set; }
          public string Name { get; set; }
      }
      
      class MyComparer : IComparer<MyClass>
      {
          public int Compare(MyClass x, MyClass y)
          {
              if (x.IsNew ^ y.IsNew)
              {
                  return x.IsNew ? -1 : 1;
              }
              else
              {
                  return StringComparer.InvariantCulture.Compare(x.Name, y.Name);
              }
          }
      }
      
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have implemented a custom list view which looks like the twitter timeline. adapter
I have a custom list definition created via visual studio 2010. I would like
I have list view with custom array adapter. I want to get items click
I have set onItemClicklistener on my custom list view but onItemClicklistener not working I
I have a custom list view that is getting data from server and changing
I have created a custom list view, each row has it's own custom selector,
I have a custom listview with three items. One of them is like Add
I want to create a list view custom like this link : http://sites.google.com/site/androideyecontact/_/rsrc/1238086823282/Home/android-eye-contact-lite/eye_contact-list_view_3.png?height=420&width=279 so
I have a custom list view and I want the background of the list
I have a List View in which I have defined a custom cell as

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.