0

几周前,我想我读过一些关于使 Button 或任何其他 View 组有点褪色或不那么明显的东西,以表明它没有被使用,但可以在用户执行某些操作时使用。现在我在任何地方都找不到它,我真的很想使用它。

有谁知道它是什么以及它是否可以在 android 2.1 中使用?

4

4 回答 4

1

// 给 0 表示完全透明 255 表示完全不透明。

Mybutt.getBackground().setAlpha(100);
于 2012-07-18T10:57:50.270 回答
1

您可以使用以下方法,如果 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
于 2012-07-18T11:01:56.700 回答
0

你试过这个:

mButton.getBackground().setAlpha(127); // semi transparent
于 2012-07-18T10:57:27.840 回答
0

您可以在任何视图/视图组及其子级上使用AlphaAnimation 。

看看这个答案

于 2012-07-18T11:01:30.020 回答