Fragment添加Theme

来源:互联网 发布:java split 空格 tab 编辑:程序博客网 时间:2024/05/16 07:03
    @Override    public View onCreateView(LayoutInflater inflater, ViewGroup container,                             Bundle savedInstanceState) {        final Context contextThemeWrapper = new ContextThemeWrapper(getActivity(), R.style.PagerTheme_PageIndicatorDefaults);        // clone the inflater using the ContextThemeWrapper        LayoutInflater localInflater = inflater.cloneInContext(contextThemeWrapper);        View v = localInflater.inflate(R.layout.fragment_doctor, container, false);        v.setOnTouchListener(mOnTouchListener);        initViews(v);        return v;    }


原创粉丝点击