【发布时间】:2012-02-23 15:10:14
【问题描述】:
你好 stackoverflowers!
这是我的按钮:
<Button
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="0.30"
android:text="@string/menu_button_newgame"
android:id="@+id/button_newgame"
/>
当我将它的 alpha 设置为 150 时
button_newgame.getBackground().setAlpha(150);
它在 2.2 上开始看起来很奇怪!在 2.3.3 上,按钮看起来正常。
Android 2.3.3:(正常)
Android 2.2:(错误)
怎么办?? :)
【问题讨论】:
-
您是否尝试过启用抖动?
button_newgame.getBackground().setDither(true) -
启用抖动不起作用
标签: android button alpha android-2.2-froyo android-2.3-gingerbread