Android 更改 new ProgressBar() 的主题

发布于 2024-11-29 08:21:14 字数 276 浏览 3 评论 0原文

想要更改仅一个 ProgressBar主题,因此更改全局主题不能一个选项。

现有代码:

ProgressBar pb = new ProgressBar(context);
((LinearLayout) v).addView(pb,0);

它可以工作,没有错误,但使用默认它们。我怎样才能改变这一点?

I want to change the theme of just ONE ProgressBar so changing the global theme is not an option.

Existing code:

ProgressBar pb = new ProgressBar(context);
((LinearLayout) v).addView(pb,0);

It works, no errors, but uses the default them. How can I change that?

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

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

发布评论

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

评论(1

各自安好 2024-12-06 08:21:14

使用不同的构造函数来设置样式:

ProgressBar loadingProgressBar = new ProgressBar(this, null, android.R.attr.progressBarStyleHorizontal);

如果您想自定义实际外观(颜色、大小等),请使用:

loadingProgressBar.setProgressDrawable(getResources().getDrawable(R.drawable.mycustomtheme));

Use a different constructor to set the style:

ProgressBar loadingProgressBar = new ProgressBar(this, null, android.R.attr.progressBarStyleHorizontal);

And if you want to customize the actual appearance (colors, size, etc.) use this:

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