Android进度条嵌入在ui中而不是对话框中

发布于 2024-10-03 20:39:05 字数 81 浏览 1 评论 0原文

有没有一种方法可以在不使用对话框的情况下将进度条嵌入到 UI 中。 不是以编程方式,而是使用布局 xml 文件。 我猜它必须是某种动画或“可绘制”

Is there a way to embed the progress bar in the UI with out an dialog.
And not programmatically but with layout xml files.
I am guessing it has to be some sort of animation or a "drawable"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

公布 2024-10-10 20:39:05

您可以使用 ProgressBar 小部件:

<ProgressBar
    android:id="@+id/a_progressbar"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>

如果需要,您可以使用自己的图像对其进行自定义。您只需创建一个如下所示的样式文件 (res/styles.xml):

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="AProgressBar">
        <item name="android:indeterminateDrawable">@drawable/progress_small</item>
        <item name="android:minWidth">20dip</item>
        <item name="android:maxWidth">20dip</item>
        <item name="android:minHeight">20dip</item>
        <item name="android:maxHeight">20dip</item>
    </style>
</resources>

@drawable/progress_small 引用名为 progress_small.png 的图像文件。然后,只需这样修改你的进度条:

<ProgressBar
    android:id="@+id/a_progressbar"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    style="@style/AProgressBar"/>

You can use the ProgressBar widget:

<ProgressBar
    android:id="@+id/a_progressbar"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>

You can customize it with your own image if you want. You just have to create a styles file (res/styles.xml) like this:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="AProgressBar">
        <item name="android:indeterminateDrawable">@drawable/progress_small</item>
        <item name="android:minWidth">20dip</item>
        <item name="android:maxWidth">20dip</item>
        <item name="android:minHeight">20dip</item>
        <item name="android:maxHeight">20dip</item>
    </style>
</resources>

@drawable/progress_small makes reference to an image file called progress_small.png. Then, just modify your progress bar this way:

<ProgressBar
    android:id="@+id/a_progressbar"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    style="@style/AProgressBar"/>
输什么也不输骨气 2024-10-10 20:39:05

是的,您可以在 xml 中使用小部件“ProgressBar”:
http://developer.android.com/reference/android/widget/ProgressBar。 html

某些操作进度的视觉指示器。向用户显示一个条形图,表示操作的进度;应用程序可以在前进时更改进度量(修改条的长度)。进度条上还有一个可显示的辅助进度,可用于显示中间进度,例如流媒体播放进度条期间的缓冲区级别。

进度条也可以是不确定的。在不确定模式下,进度条显示循环动画。当任务长度未知时,应用程序使用此模式。

Yes you can use the Widget "ProgressBar" in your xml:
http://developer.android.com/reference/android/widget/ProgressBar.html

Visual indicator of progress in some operation. Displays a bar to the user representing how far the operation has progressed; the application can change the amount of progress (modifying the length of the bar) as it moves forward. There is also a secondary progress displayable on a progress bar which is useful for displaying intermediate progress, such as the buffer level during a streaming playback progress bar.

A progress bar can also be made indeterminate. In indeterminate mode, the progress bar shows a cyclic animation. This mode is used by applications when the length of the task is unknown.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文