gpt4 book ai didi

android - 在 actionbar sherlock 中设置进度条颜色

转载 作者:行者123 更新时间:2023-11-30 03:59:08 25 4
gpt4 key购买 nike

我们如何在 ABS 中设置进度条的颜色。默认情况下它是蓝色的,看起来很适合深色主题。但是当我使用浅色主题时,它几乎不可见。

我应该覆盖 android:progressBarStyle 样式中的哪个项目来更改颜色。我想达到与此链接中描述的完全相同的效果 Styling the progressbar in ActionbarSherlock .

最佳答案

回答我自己的问题。我没有使用操作栏进度,而是在我的布局文件中添加了一个 progressbar 元素。然后将 xml 文件设置为 progressdrawable 到具有所需颜色的 progress bar

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<ProgressBar android:id="@+id/progress"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="4dp"
android:max="100"
android:progress="0"
android:secondaryProgress="0"
android:visibility="gone"/>

<WebView
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>

</LinearLayout>

可绘制的

<item android:id="@android:id/progress">
<clip>
<shape>
<gradient
android:angle="270"
android:centerColor="@color/progresscolor"
android:centerY="0.75"
android:endColor="@color/progresscolor"
android:startColor="@color/progresscolor" />
</shape>
</clip>
</item>

关于android - 在 actionbar sherlock 中设置进度条颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12815681/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com