ActionBarSherlock学习笔记——requestWindowFeature

requestWindowFeature

1.使用方法:

1 /**
2  * 需要导入
3  */
4 import com.actionbarsherlock.view.Window;
1         /**
2          * 透明覆盖的ActionBar
3          */
4         requestWindowFeature(Window.FEATURE_ACTION_BAR_OVERLAY);
1         /**
2          * 请求加载条
3          */
4         requestWindowFeature(Window.FEATURE_PROGRESS);
5         /**
6          * 请求圆形加载
7          */
8         requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
原文地址:https://www.cnblogs.com/qinghuaideren/p/3065166.html