Android Button Alpha 在 2.2 及更低版本上看起来很奇怪

发布于 2025-01-08 15:52:53 字数 619 浏览 1 评论 0原文

你好,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:(有问题)

在此处输入图像描述

该怎么办? :)

Hello stackoverflowers!

This is my button:

<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" 
/>

when I set it's alpha to 150 with

button_newgame.getBackground().setAlpha(150);

it starts looking weird on 2.2! On 2.3.3 the buttons look normally.

Android 2.3.3: (normal)

enter image description here

Android 2.2: (buggy)

enter image description here

What to do ?? :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

大海や 2025-01-15 15:52:53

看来是九补丁的问题。

尝试使用

android:layout_height="wrap_content"

所有按钮具有相同的内容,并且它们应该保持相同的高度。

或者尝试创建一个自定义的九块可绘制对象用作背景。

It seems to be a problem with the nine-patch.

Try to use

android:layout_height="wrap_content"

All the buttons has the same content and they should keep the same height.

Or try to create a custom nine-patch drawable to use as background.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文