动态设置Fragment、view主题

来源:互联网 发布:天赐系统安装软件 编辑:程序博客网 时间:2024/06/05 19:24


fragment:

final Context contextThemeWrapper = new ContextThemeWrapper(getActivity(), R.style.Widget_MainTabPageIndicator);  
        LayoutInflater localInflater = inflater.cloneInContext(contextThemeWrapper);  
         mRootView =  localInflater.inflate(R.layout.fragment_main, container, false);


view:

final View tabView = new View (new ContextThemeWrapper(getContext(), defaultStyle));


textView

textView.setTextAppearance(context, R.style.mystyle);


RelativeLayout someLayout = new RelativeLayout(context, null, R.style.LightStyle);

0 0
原创粉丝点击