我正在寻找任何在屏幕顶部包含一个细进度条的代码示例,类似于this。
我只能找到有关“常规”进度条的信息:
我的链接中调用的细蓝色进度条是什么?
为了使它变薄,只需给你的进度条一个静态高度,例如:android:layout_height="4dp"
新的 Android 版本水平进度条通常是这样的:
<ProgressBar
style="@android:style/Widget.ProgressBar.Horizontal"
... />
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.