我想在操作栏上设置progressBar,但设置
requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
setProgressBarIndeterminateVisibility(true);
on onCreate
方法产生一个中等大小的progressBar(48dip x 48dip)我想。我想改变progressBar的大小,但我找不到如何做到这一点。你能帮帮我吗?
答案 0 :(得分:28)
您需要创建自己的样式才能应用于ActionBar。 Android Developers Blog.要为中间进度条设置样式,请尝试使用indeterminateProgressStyle
和Widget.ProgressBar.Small
。这是一个简单的例子。
<style name="YourTheme" parent="@android:style/Theme.Holo.Light">
<item name="android:actionBarStyle">@style/ActionBarIPS</item>
</style>
<style name="IndeterminateProgress" parent="@android:style/Widget.ProgressBar">
<item name="android:indeterminateDrawable">@drawable/ic_launcher</item>
</style>
<style name="ActionBarIPS" parent="@android:style/Widget.ActionBar">
<item name="android:indeterminateProgressStyle">@style/IndeterminateProgress</item>
<item name="android:background">@color/white</item>
</style>
答案 1 :(得分:15)
1.定义res / values / styles.xml(此示例使用Sherlock库在旧的Android版本中提供操作栏,因此,如果您不使用Sherlock,则应使用适当的父级来定义自定义样式):
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="MyTheme" parent="Theme.Sherlock">
<item name="actionBarStyle">@style/Widget.Styled.ActionBar</item>
<item name="android:actionBarStyle">@style/Widget.Styled.ActionBar</item>
</style>
<style name="Widget.Styled.ActionBar" parent="Widget.Sherlock.Light.ActionBar">
<item name="android:indeterminateProgressStyle">@style/IndeterminateProgress</item>
<item name="indeterminateProgressStyle">@style/IndeterminateProgress</item>
</style>
<style name="IndeterminateProgress" parent="@android:style/Widget.ProgressBar.Small">
<item name="android:indeterminateDrawable">@drawable/progress_indeterminate_custom</item>
</style>
</resource>
2.define res / drawable / progress_indeterminate_custom.xml:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<rotate
android:drawable="@drawable/ic_progress_logo1"
android:fillAfter="true"
android:fromDegrees="-180"
android:pivotX="50%"
android:pivotY="50%"
android:toDegrees="180" />
</item>
<item>
<rotate
android:drawable="@drawable/ic_progress_logo2"
android:fillAfter="true"
android:fromDegrees="180"
android:pivotX="50%"
android:pivotY="50%"
android:toDegrees="-180" />
</item>
</layer-list>
3.上述代码使用2个图像(ic_progress_logo1和ic_progress_logo2)作为自定义进度不确定图标。您可以通过添加新的项目元素来使用尽可能多的图像/绘图。此外,您可以应用不同的效果/动画。更多信息:Animation Resources
4.使用AndroidManifest.xml创建的应用样式:
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:name=".application.MyApplication">
<activity
android:name=".activities.MyActivity"
android:label="@string/app_name"
android:theme="@style/MyTheme" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
5.享受您的动画自定义进度不确定图标:D
答案 2 :(得分:8)
我努力解决所有这些解决方案,因为我没有使用actionbarsherlock
。我利用Vlasto Benny Lava的答案,这对我来说最初没有用。
以下是我一步一步做的事情:
1)打开您的styles.xml文件,它应位于/res/values/styles.xml
下。如果它不存在则创建它。
<强> 2)强> 粘贴:
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="myTheme" parent="android:Theme.Holo">
<item name="android:actionBarStyle">@style/ActionBar.MyStyle</item>
</style>
<style name="ActionBar.MyStyle" parent="@android:style/Widget.Holo.ActionBar">
<item name="android:indeterminateProgressStyle">@style/ActionBarProgressBar.MyStyle</item>
</style>
<style name="ActionBarProgressBar.MyStyle" parent="@android:style/Widget.Holo.ProgressBar.Small">
<item name="android:minWidth">28dp</item>
<item name="android:maxWidth">28dp</item>
<item name="android:minHeight">28dp</item>
<item name="android:maxHeight">28dp</item>
</style>
</resources>
我遇到过一个catchya,你不能使用主题名称“AppTheme”,否则覆盖将无效。我用了“MyTheme”。这个主题是使用Holo所以它有一个黑色的ActionBar,如下图所示。如果您希望使用白色操作栏,那么当然会将android:Theme.Holo
替换为android:Theme.Holo.Light
等。
3)修改AndroidManifest.xml
。
您的<application>
必须包含android:theme="@style/myTheme"
,以便应用程序使用styles.xml
即,我的清单应用程序标记文件如下所示:
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/myTheme"
android:name="Application Name Here" >
因为您只是缩小现有进度png的大小,所以无需导出任何图像并将其移动到您的可绘制位置等。
这就是我的样子,图标的大小对我来说是完美的。
答案 3 :(得分:2)
对于ActionBarSherlock,您可以通过为Widget.ProgressBar.Small提供父级来更改不确定的进度,这也可以在没有Sherlock的情况下工作。
我从SDK中的android-15 res文件夹中获取了drawable,确保获取progress_small_white.xml和相关资源。
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Dark" parent="Theme.Sherlock">
<item name="actionBarStyle">@style/Widget.Styled.ActionBar</item>
<item name="android:actionBarStyle">@style/Widget.Styled.ActionBar</item>
</style>
<style name="Widget.Styled.ActionBar" parent="Widget.Sherlock.Light.ActionBar">
<item name="android:indeterminateProgressStyle">@style/IndeterminateProgress</item>
<item name="indeterminateProgressStyle">@style/IndeterminateProgress</item>
</style>
<style name="IndeterminateProgress" parent="@android:style/Widget.ProgressBar.Small">
<item name="android:indeterminateDrawable">@drawable/progress_small_holo</item>
</style>
</resource>
答案 4 :(得分:2)
要使ActionBar上的ProgressBar更小,您要执行的操作是覆盖此{/ 1}}
Widget.Holo.ProgressBar.Small
并将大小设置为您想要的任何内容。
答案 5 :(得分:1)
在on Create
方法中粘贴以下代码,然后在中间模式下运行此栏
如果您想显示进度百分比,请评论progressBar.setIndeterminate(true);
方法并取消注释progressBar.setProgress(65)
方法并保持进度
progressBar = new ProgressBar(this, null, android.R.attr.progressBarStyleHorizontal);
progressBar.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, 24));
//progressBar.setProgress(65);
//progressBar.setBackgroundDrawable(getResources().getDrawable(R.color.lock_background_greeen));
progressBar.setIndeterminate(true);
// retrieve the top view of our application
final FrameLayout decorView = (FrameLayout) getWindow().getDecorView();
decorView.addView(progressBar);
ViewTreeObserver observer = progressBar.getViewTreeObserver();
observer.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
View contentView = decorView.findViewById(android.R.id.content);
progressBar.setY(contentView.getY() - 10);
ViewTreeObserver observer = progressBar.getViewTreeObserver();
observer.removeGlobalOnLayoutListener(this);
}
});
答案 6 :(得分:0)
我必须与早期版本的Android SDK兼容,因此我必须保持简单并使用它:
<强> Styles.xml 强>
<style name="TallerTitleBarDialogThemeStyle" parent="@android:style/Theme.Dialog">
<item name="android:windowTitleSize">36dp</item>
</style>
<强>的AndroidManifest.xml 强>
android:theme="@style/TallerTitleBarDialogThemeStyle"
我需要调整的活动。