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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T06:19:58+00:00 2026-06-04T06:19:58+00:00

I have a gallery where I have implement a custom adapter extending the BaseAdapter.

  • 0

I have a gallery where I have implement a custom adapter extending the BaseAdapter. For some items, I want them to be disabled, and not clickable as well.

Overriding the isEnabled(int) method doesn’t work. I am still able to click on the disabled items, and then, the gallery centers this item inside it.

Any ideas?

  • 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-04T06:20:00+00:00Added an answer on June 4, 2026 at 6:20 am

    This following is the relevant source code of gallery widget

      public boolean onSingleTapUp(MotionEvent e) {
    
         if (mDownTouchPosition >= 0) {
    
             // An item tap should make it selected, so scroll to this child.
             scrollToChild(mDownTouchPosition - mFirstPosition);
    
             // Also pass the click so the client knows, if it wants to.
             if (mShouldCallbackOnUnselectedItemClick || mDownTouchPosition == mSelectedPosition) {
                 performItemClick(mDownTouchView, mDownTouchPosition, mAdapter
                         .getItemId(mDownTouchPosition));
             }
    
             return true;
         }
    
         return false;
     }
    

    As you can see, the gallery scrolls to the tapped child item before performing the click on it.
    So the only way you can truly disable an item is by extending Gallery and overriding onSingleTapUp(MotionEvent e) in it.

    @Override
    public boolean onSingleTapUp(MotionEvent e) {
        int itemPosition = pointToPosition((int) e.getX(), (int) e.getY());
        if (item at itemPosition is disabled) {
            // Do nothing.
            return true;
        }
        return super.onSingleTapUp(e);
    }
    

    Try and let me know.

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

Sidebar

Related Questions

I have custom gallery. Gallery represents items that are frame layout. There are one
I have a requirement in that I want to implement an image gallery with
I want to implement a Gallery that allows the user to drag items out
I have a gallery that's loaded via a BaseAdapter . This works fine. I
I've created a custom gallery; however, the Set wallpaper button will not set the
I have implemented a custom gallery with two UIViewController subclasses: AlbumController and PhotosController .
Ok I have been working on this gallery for some time and I keep
I need to have a custom interpolator for the Gallery widget. I checked the
In My Application i have Implement the Simple Gallery Demo. Here i am going
The goal is to implement a Gallery whose adapter returns ListViews (in other words,

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.