在Fragment 里面关于ViewPagerIndicator样式的设置

@Override

   public View onCreateView(LayoutInflaterinflater, ViewGroupcontainer, Bundle savedInstanceState){


      Context  contextnew  ContextThemeWrapper(getActivity(), R.style.StyledIndicators);//在这里设置样式

      // clone the inflater using the ContextThemeWrapper

      LayoutInflater  localInflater=inflater.cloneInContext(context);

      View   viewlocalInflater.inflate(R.layout.course_fragment,containerfalse);

      return  view;

}

猜你喜欢

转载自blog.csdn.net/qinwendou/article/details/79870411