Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在使用 alpha 值时遇到问题。我知道如何为背景设置 alpha 值,但我不知道如何为 ImageButton 设置 20% 的 alpha 值。
imageButton.setAlpha(?)
谁能给我关于这个主题的完整详细教程,通过它我可以更好地理解这个主题?
您不需要教程,只需阅读该方法的 javadoc,其中说:
setAlpha() - 设置视图的不透明度。这是一个从 0 到 1 的值,其中 0 表示视图完全透明,1 表示视图完全不透明。
20% 透明则意味着值为 0.2。