XML 文件中的 Android 变量

发布于 2024-10-20 08:15:31 字数 312 浏览 3 评论 0原文

如何将变量读入 XML 文件。这是我的搜索栏,

<SeekBar
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   android:layout_margin="10px"
   android:id="@+id/seekbar"
   android:max="100"
   android:progress="50"
   />

我想将 android:max 更改为变量,因为它会发生变化。这是怎么做到的?谢谢

How do I read in a variable to an XML file. This is a seekbar I have

<SeekBar
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   android:layout_margin="10px"
   android:id="@+id/seekbar"
   android:max="100"
   android:progress="50"
   />

I want to change the android:max to a variable as it will change. How is this done? Thanks

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

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

发布评论

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

评论(1

乜一 2024-10-27 08:15:31

您需要通过其 id 创建 SeekBar 的实例 seekbar

Seekbar seebar = (SeekBar) findViewById(R.id.seekbar);

然后你将设置你想要设置的值

seekbar.max = yourNewValue;

You will want to create an instance of the SeekBar by it's id seekbar

Seekbar seekbar = (SeekBar) findViewById(R.id.seekbar);

And then you will set the value that you want to set

seekbar.max = yourNewValue;

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