android编程如何把现有的背景图片设置成透明的

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android编程如何把现有的背景图片设置成透明的相关的知识,希望对你有一定的参考价值。

方法一:
只要在配置文件内activity属性配置内加上

android:theme="@android:style/Theme.Translucent"

就好了。

这样就调用了android的透明样式!
方法二:
先在res/values下建colors.xml文件,写入:
<?xmlversionxmlversion="1.0"encoding="UTF-8"?>
  
  <resources>
  
  <colornamecolorname="transparent">#9000</color>
  
  </resources>
这个值设定了整个界面的透明度,为了看得见效果,现在设为透明度为56%(9/16)左右。
参考技术A Android中的Image,或者layout都有一个Alpha属性,0 -255之间,楼主可以试一下,谢谢采纳,追问

在哪个文件里面设置啊 相关代码呢 求解释 谢谢我在网上搜的这个方法
View v = findViewById(R.id.content);//找到你要设透明背景的layout 的id
v.getBackground().setAlpha(100);//0~255透明度值
但是加进去老提示content找不到

追答

你可以在xml代码里面,直接设置android:alpha=“100” , 或者就像上面的代码一样去设置也是可以的,至于你说的content找不到,请确保的id为content在xml文件里面已经定义了,看来同学你还要加油啊,findViewByid()这个方法名字都告诉我们是通过id来寻找view,但是使用他之前还要确保你的setcontentView(R.layout.main),那个main 的xml文件已经设置为当前页面了,你再试试,有问题可以加问

追问

本回答被提问者采纳
参考技术B 一般来说,Android中把所有控件本身的背景去掉,即变成透明的话可以用下面的代码:
半透明<Button android:background="#e0000000" ... />
透明<Button android:background="#00000000" ... />
把 android:background="#00000000" 加到响应控件里就行了。
参考技术C 叫你美工切一个透明的图片即可

如何设置绘图图表以在 R 中具有透明背景?

【中文标题】如何设置绘图图表以在 R 中具有透明背景?【英文标题】:How to set plotly chart to have a transparent background in R? 【发布时间】:2016-09-19 16:52:13 【问题描述】:

到目前为止,这是我所拥有的:

f1 <- list(
   family = "Arial, sans-serif",
   size = 25,
   color = "white"
)
f2 <- list(
   family = "Old Standard TT, serif",
   size = 14,
   color = "black"

)
a <- list(
   title = "SALES PER SONG",
   titlefont = f1,
   showgrid = FALSE,
   showticklabels = TRUE,
   showline=TRUE,
   tickangle = 45,
   tickfont = f2
  )

 salesplot <-plot_ly(producersales, type="scatter", x=Producer, y=SalesPerSong, color=SongRange, colors=cols, mode="markers", size=SalesPerSong) %>% 
layout(xaxis = a, yaxis = a)

我尝试在layout() 中的 x 和 y 轴信息之后添加paper_bgcolor=#00000000, plot_bgcolor=#00000000,但是当我运行命令时,我得到了加号。我不知道该怎么做,所以任何帮助表示赞赏。谢谢!

【问题讨论】:

请注意,透明背景也将应用于导出的图像。这会在某些图像查看应用程序中使黑色标签文本不可见,包括 Windows 10 的默认照片工具。 请注意,paper_bgcolor=#00000000 返回一个加号,因为# 将此后同一行中的所有内容都作为注释,从而否定了您的右括号。替换为paper_bgcolor = '#00000000' 【参考方案1】:

试试吧:

salesplot <-plot_ly(producersales, type="scatter", x=Producer, y=SalesPerSong, color=SongRange, colors=cols, mode="markers", size=SalesPerSong) %>% 
layout(xaxis = a, yaxis = a) %>% 
layout(plot_bgcolor='rgb(254, 247, 234)') %>% 
layout(paper_bgcolor='rgb(254, 247, 234)') #will also accept paper_bgcolor='black' or paper_bgcolor='transparent'

您可以更改 rgb 数字以满足您的需要。

【讨论】:

【参考方案2】:

我发现玩具需要在布局中使用 rgba AND fig_bgcolor

plt %>%
    layout(plot_bgcolor  = "rgba(0, 0, 0, 0)",
           paper_bgcolor = "rgba(0, 0, 0, 0)",
           fig_bgcolor   = "rgba(0, 0, 0, 0)")

【讨论】:

这很有用,即使 plotly 告诉我 'fig_bgcolor' 不是有效参数。

以上是关于android编程如何把现有的背景图片设置成透明的的主要内容,如果未能解决你的问题,请参考以下文章

如何使 Android BottomNavigationView 背景透明?

在android中将形状背景设置为透明

如何将背景颜色设置为透明状态栏

以编程方式将 EditText 的背景资源设置为透明字段

Visual Studio2005中的标签能设置成透明背景吗

安卓listview的item点击时候的背景颜色怎么去掉或者设置成透明的呢?