有透明色码吗?

iBE*_*BEK -3 transparency android background-color color-codes android-drawable

我正在寻找我的 actionBar 是透明的。我只有 searchView 并且它在我的 MapActivity 中,我只希望 searchView 和“后退”按钮可见。我使用哪个透明度 # 代码填写以下内容:

 getSupportActionBar().setBackgroundDrawable(new ColorDrawable(parseColor("#")));  
Run Code Online (Sandbox Code Playgroud)

小智 6

Android 支持 #AARRGGBB 颜色格式。

A = alpha,R = 红色,G = 绿色,B = 蓝色

要使某些视图透明,请使用 #00000000。
前 00 是 alpha。