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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T02:22:27+00:00 2026-05-16T02:22:27+00:00

If I was using an ImageButton with a selector for its background, is there

  • 0

If I was using an ImageButton with a selector for its background, is there a state I can change which will make it change its appearance? Right now I can get it to change images when pressed, but there seems to be no “highlighted” or “selected” or similar state which lets me toggle its appearance at will.

Here’s my XML; it only changes appearance when pressed.

 <selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="true" android:state_pressed="false" android:drawable="@drawable/map_toolbar_details_selected" />
<item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/map_toolbar_details_selected" />
<item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/map_toolbar_details_selected" />
<item android:drawable="@drawable/map_toolbar_details" />

  • 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-16T02:22:28+00:00Added an answer on May 16, 2026 at 2:22 am

    This works for me:

    <?xml version="1.0" encoding="utf-8"?>
    <selector xmlns:android="http://schemas.android.com/apk/res/android">
        <!-- NOTE: order is important (the first matching state(s) is what is rendered) -->
        <item 
            android:state_selected="true" 
            android:drawable="@drawable/info_icon_solid_with_shadow" />
        <item 
            android:drawable="@drawable/info_icon_outline_with_shadow" />
     </selector>
    

    And then in java:

    //assign the image in code (or you can do this in your layout xml with the src attribute)
    imageButton.setImageDrawable(getBaseContext().getResources().getDrawable(R.drawable....));
    
    //set the click listener
    imageButton.setOnClickListener(new OnClickListener() {
    
        public void onClick(View button) {
            //Set the button's appearance
            button.setSelected(!button.isSelected());
    
            if (button.isSelected()) {
                //Handle selected state change
            } else {
                //Handle de-select state change
            }
    
        }
    
    });
    

    For smooth transition you can also mention animation time:

    <selector xmlns:android="http://schemas.android.com/apk/res/android" android:exitFadeDuration="@android:integer/config_mediumAnimTime">
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I can set ImageButton background transparent in layout.xml using: android:background=@android:color/transparent How I can acomplish
i'm trying to change the ImageButton on my site using resx files. i tried
When using a transparent PNG image which has a fine fading shadow always there
I tried to change the image src of ImageButton using jQuery then it fails
I am trying to remove an ImageButton's background in only the default state. I'd
Any help will be highly appreciated. I am using a ImageButton in each row
I have a confusion about ImageButton . I can make an ImageView clickable and
I am using ASP.NET 2.0. I have Image and ImageButton Side by Side by
I am using a Gallery and I bind a ImageView , ImageButton and a
using this http://bl.ocks.org/950642 we can see how to add images to nodes, the question

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.