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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T02:48:25+00:00 2026-05-31T02:48:25+00:00

I have a button which when clicked shows a checkmark image just inside the

  • 0

I have a button which when clicked shows a checkmark image just inside the right side of the button.
What’s the best way to show this check mark?
I was hoping to just hide the image and when clicked display it, but I can’t get it to display in the proper spot. I also saw android:drawableRight in the documentation, but is there a way to hide that until clicked?

xml for button and checkmark image

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="center_horizontal"
    android:onClick="myClickHandler"
    android:id="@+id/btn"/>
<ImageView
    android:layout_height="24px"
    android:layout_width="24px"
    android:id="@+id/check"
    android:src="@drawable/check_mark"
    android:visibility="gone"
    />

Thanks

  • 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-31T02:48:26+00:00Added an answer on May 31, 2026 at 2:48 am

    You need to do this:

    Button btn = (Button)getViewById(R.id.btn);
    Drawable drawable = getResources().getDrawable(R.drawable.chec_mark);
    
    //hide drawable with this call
    btn.setCompoundDrawablesWithIntrinsicBounds(null,null,null,null); //order of params (left, top, right, bottom)
    
    //show drawable on right side of button with this call (in your onclick method)
    btn.setCompoundDrawablesWithIntrinsicBounds(null,null,drawable,null);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following construct, which shows a DataBound ListBox and a Button inside
I have a Button which when clicked will execute an addQty method and in
On my website, I have a button which when clicked displays a feedback form
I have a button which creates a div. Once clicked I would like to
I have this button which is not working correctly for hold button for a
I have a button which when toggled displays/hides a div ('.reportOptions'), this works perfectly
This is the a button which when clicked will open up Safari. -(IBAction)loginClicked:(id)sender{ NSLog(@loginClicked);
I have a button which is in update panel. When I click on button
I have a button which opens a context menu with a list of various
I have a button which when pressed, sets the user's rights in the db.

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.