Android为片段设置透明背景

前端之家收集整理的这篇文章主要介绍了Android为片段设置透明背景前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的应用程序中,我有单个活动和所有其他片段

我正在设置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 theme
final Context contextThemeWrapper = new ContextThemeWrapper(getActivity(),R.style.yourCustomTheme);

// clone the inflater using the ContextThemeWrapper
LayoutInflater localInflater = inflater.cloneInContext(contextThemeWrapper);

// inflate the layout using the cloned inflater,not default inflater
return localInflater.inflate(R.layout.yourLayout,container,false);
}

知道怎么做吗?

解决方法

create a callback and implement it in Acitvity

interface OnFragmentDisplay{
  onFragmentDisplay();
}

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

this linkthis可能有所帮助

你试过这个吗?

fragment.getView().setBackgroundColor(Color.WHITE);
原文链接:https://www.f2er.com/android/317824.html

猜你在找的Android相关文章