gpt4 book ai didi

android - 如何在 Android 中创建像图像一样的进度条

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:10:22 26 4
gpt4 key购买 nike

如何在我的 Android 应用程序中创建以下图像类型的进度环。我想在我的整个应用程序加载到设备之前 10 秒显示它。我也想旋转它。像窗口设备旋转。任何帮助表示赞赏。我是 Andorid 新手。

图片:

enter image description here

最佳答案

我得到了完美的答案。

使用此链接,我找到了圆形进度环。

progress_bar.gif

然后我使用这段代码:

动画.xml

<?xml version="1.0" encoding="utf-8"?>
<animated-rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:drawable="@drawable/progress_bar"
android:pivotX="50%"
android:pivotY="50%" />

在我的主 xml 文件中。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">


<ProgressBar
android:id="@+id/progressbar1"
android:layout_marginTop="80dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:indeterminateDrawable="@anim/animation"/>


</RelativeLayout>

最后的输出是:

enter image description here

关于android - 如何在 Android 中创建像图像一样的进度条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35029046/

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