几周前,我想我读过一些关于使 Button 或任何其他 View 组有点褪色或不那么明显的东西,以表明它没有被使用,但可以在用户执行某些操作时使用。现在我在任何地方都找不到它,我真的很想使用它。
有谁知道它是什么以及它是否可以在 android 2.1 中使用?
// 给 0 表示完全透明 255 表示完全不透明。
Mybutt.getBackground().setAlpha(100);
您可以使用以下方法,如果 Button 未启用并且您想向用户显示它未在使用中。
mButton.setEnabled(false); // if it is not enable and you want to show user that it is not in use.
和
mButton.setEnabled(true); // to make it enabled/ in use
你试过这个:
mButton.getBackground().setAlpha(127); // semi transparent
您可以在任何视图/视图组及其子级上使用AlphaAnimation 。
看看这个答案。