Android为片段设置透明背景

Android为片段设置透明背景,第1张

概述在我的应用程序中,我有单个活动和所有其他片段 我正在设置style.xml的活动背景,如下所示 <item name="android:windowBackground">@color/very_light_gray</item> 现在只有一个特定的片段我想设置背景透明,我无法做到尝试下面的片段代码片段对我来说不起作用 @Override public View onCreateView(Lay 在我的应用程序中,我有单个活动和所有其他片段

我正在设置style.xml的活动背景,如下所示

<item name="androID:windowBackground">@color/very_light_gray</item>

现在只有一个特定的片段我想设置背景透明,我无法做到尝试下面的片段代码片段对我来说不起作用

@OverrIDe public VIEw onCreateVIEw(LayoutInflater inflater,VIEwGroup container,Bundle savedInstanceState) {// create ContextthemeWrapper from the original Activity Context with the custom themefinal Context contextthemeWrapper = new ContextthemeWrapper(getActivity(),R.style.yourCustomtheme);// clone the inflater using the ContextthemeWrapperLayoutInflater localinflater = inflater.cloneInContext(contextthemeWrapper);// inflate the layout using the cloned inflater,not default inflaterreturn localinflater.inflate(R.layout.yourLayout,container,false);}

知道怎么做吗?

解决方法

create a callback and implement it in Acitvity

interface OnFragmentdisplay{  onFragmentdisplay();}

当此片段显示更新活动背景为透明..或在活动中将其设置为主题

见 this link和this可能有所帮助

你试过这个吗?

fragment.getVIEw().setBackgroundcolor(color.WHITE);
总结

以上是内存溢出为你收集整理的Android为片段设置透明背景全部内容,希望文章能够帮你解决Android为片段设置透明背景所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1138297.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存