2013.12.03(5) ——— android ActionbarSherlockSample之IndeterminateProgress

/* * Copyright (C) 2011 Jake Wharton * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * *      http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */package com.actionbarsherlock.sample.demos;import android.os.Bundle;import android.view.View;import com.actionbarsherlock.app.SherlockActivity;import com.actionbarsherlock.view.Window;public class IndeterminateProgress extends SherlockActivity {    @Override    protected void onCreate(Bundle savedInstanceState) {        setTheme(SampleList.THEME); //Used for theme switching in samples        super.onCreate(savedInstanceState);        //This has to be called before setContentView and you must use the        //class in com.actionbarsherlock.view and NOT android.view        requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);        setContentView(R.layout.iprogress);        findViewById(R.id.enable).setOnClickListener(new View.OnClickListener() {            @Override            public void onClick(View arg0) {                setSupportProgressBarIndeterminateVisibility(true);            }        });        findViewById(R.id.disable).setOnClickListener(new View.OnClickListener() {            @Override            public void onClick(View arg0) {                setSupportProgressBarIndeterminateVisibility(false);            }        });    }}


这个和上篇基本上没有区别,就是设置了另外一个Feature
requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);

但是 默认的圆圈太大了,最好能自定义样式
参考:http://niyanshi.iteye.com/blog/1927334






更多相关文章

  1. 【ListView】列表Item样式
  2. android 滚动样式性别选择器简单实现
  3. Dialog 样式
  4. ANDROID笔记:自定义CheckBox样式
  5. android tips—NumberPicker,DataPicker,TimePicker样式修改
  6. android自定义Spinner下拉菜单样式并获得选项的值
  7. Android: 自定义Tab样式,一种简单的方式。
  8. Android样式与主题
  9. Android Shape绘制实用圆圈

随机推荐

  1. Android内存管理-SoftReference的使用
  2. 谈谈Android的so
  3. Android学习笔记(1)——什么是Android
  4. Android(安卓)4.0 将终结“部分”第三方R
  5. Android屏幕适配;知识点+攻略+面试要点
  6. Chris:怎样成为一名Android应用开发者
  7. Android(安卓)Handler
  8. Android实现图表绘制和展示
  9. 10个快速开发Android/Iphone web App应用
  10. Android(安卓)webview