欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Android设置Button保持Press的状态

程序员文章站 2023-12-28 21:44:34
...

设置Button保持Press的状态:

btn_favorite.setFocusable(false); 
btn_favorite.setPressed(false); 
btn_favorite.setFocusableInTouchMode(false);

恢复Button:

btn_favorite.setFocusableInTouchMode(true); 
btn_favorite.requestFocus();


转载于:https://my.oschina.net/sunnycx/blog/304677

上一篇:

下一篇: