2

我正在寻找任何在屏幕顶部包含一个细进度条的代码示例,类似于this

我只能找到有关“常规”进度条的信息:

在此处输入图像描述

我的链接中调用的细蓝色进度条是什么?

4

3 回答 3

2

为了使它变薄,只需给你的进度条一个静态高度,例如:android:layout_height="4dp"

于 2013-06-18T06:05:34.167 回答
1

新的 Android 版本水平进度条通常是这样的:

<ProgressBar
     style="@android:style/Widget.ProgressBar.Horizontal"
     ... />

这是自定义示例

于 2012-11-26T23:49:00.067 回答
0

You can also get the progress bar for lower Android versions using ActionBarSherlock.

The link for the source code: http://actionbarsherlock.com/download.html

In the zip file, go to actionbarsherlock-samples -> demos. You will get the code in "Progress.java" in the src folder.

于 2013-12-17T22:21:21.753 回答