Android Custom button persistence

Source: Internet
Author: User

Author: playerc

Link: http://www.cnblogs.com/playerc/archive/2013/05/24/android_keep_button_pressed.html

If you do not want to use the TabHost control provided by Android, You can implement a simple function. After View. setPress (boolean pressed) is enabled, the View status is restored immediately and does not meet the requirements. So Baidu and Google.

Finally, find the ideal answer on StackOverFlow, as shown below:

Create selector type xml under drawable

<Selector xmlns: android = "http://schemas.android.com/apk/res/android"> <item android: state_selected = "false" android: state_focused = "false" android: state_pressed = "false"> <bitmap... /> </item> <item android: state_selected = "true"> <bitmap... /> </item> <item android: state_focused = "true"> <bitmap... /> </item> <item android: state_pressed = "true"> <bitmap... /> </item> </selector>

Key point: The selected state image is the same as the pressed image. Of course, if you want to set it to another one .. Whatever you want.

View. setBackGroundResource (R. drawable. selector );

When you need to switch the status, view. setSelected (true)... directly in OnTouchEvent.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.