Android - 进度条或搜索栏还是?

发布于 2024-10-18 06:26:34 字数 267 浏览 1 评论 0原文

我需要在水平条上显示值,例如条形图。这些值来自数据库。我现在有一个 XML 布局,显示值、最大值和百分比。像这样:

10 / 100 10%

但这非常无聊,而且如果用户接近 100%,也不会真正引起他们的注意。我现在已经改变了每一行的颜色,但是最好有一个滑动“温度计”显示数据的图形表示,

只有当用户单击按钮显示页面时才会更新页面。

有没有关于如何使用进度栏或搜索栏的示例,或者你们都会做什么?有关于如何制作您推荐的内容的示例吗?

谢谢!

I need to show values on a horizontal bar like a bar graph. the values are coming from a database. I have a XML layout now showing the value and max and percent. Like this:

10 / 100 10%

But that is pretty boring and doesn't really jump out at the user if they are close to 100%. I have it changing colors of each row now but it would be good to have a sliding "thermometer" showing a graphical representation of the data

the page is only updated when the user click on the button to show the page.

Is there any example on how to use the progress bar or the seek bar or what would you all do? is there examples on how to make whatever you recommend?

thanks!

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

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

发布评论

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

评论(1

烟凡古楼 2024-10-25 06:26:34

您可以添加 ProgressBar

<ProgressBar
    android:id="@+id/bar"
    android:layout_height="20dip"
    android:layout_width="fill_parent"
    android:indeterminateOnly="false"
    android:progressDrawable="@android:drawable/progress_horizontal"
    android:indeterminateDrawable="@android:drawable/progress_indeterminate_horizontal"
    />

和活动:

public class ProgressTest extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.progresstest);
        ProgressBar bar = (ProgressBar)findViewById(R.id.bar);
        bar.setProgress(50);
    }
}

You could add a ProgressBar

<ProgressBar
    android:id="@+id/bar"
    android:layout_height="20dip"
    android:layout_width="fill_parent"
    android:indeterminateOnly="false"
    android:progressDrawable="@android:drawable/progress_horizontal"
    android:indeterminateDrawable="@android:drawable/progress_indeterminate_horizontal"
    />

And the activity:

public class ProgressTest extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.progresstest);
        ProgressBar bar = (ProgressBar)findViewById(R.id.bar);
        bar.setProgress(50);
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文