gpt4 book ai didi

android - 带图标的水平进度条

转载 作者:行者123 更新时间:2023-11-30 00:16:32 26 4
gpt4 key购买 nike

在我的项目中,我想做一个类似于下面的水平进度条。

HERE

我试过很多图书馆,但没有一个有这个功能。有什么办法可以做到这一点?

这是我的代码:

dialog = new ProgressDialog(Context.this);
dialog.setIndeterminate(true);
dialog.setMessage("Some Text");
dialog.show();

最佳答案

您应该使用 seekBar 而不是 progressDialog。你可以添加 android:thumb 图标。

<SeekBar
android:id="@+id/seekBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:thumb="@drawable/icon"
android:max="10"
android:progress="5"
android:progressDrawable="@drawable/custom_seekbar" />

自定义搜索栏.xml:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/progress">
<clip>
<shape android:shape="rectangle">
<size
android:width="12dp"
android:height="12dp" />
<corners android:radius="15dp" />

<solid android:color="#4fc3f7" />

<gradient
android:angle="270"
android:centerColor="#4fc3f7"
android:endColor="#4fc3f7"
android:startColor="#4fc3f7" />
</shape>
</clip>
</item>
</layer-list>

关于android - 带图标的水平进度条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47159758/

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