XML 文件中的 Android 变量
如何将变量读入 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要通过其 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 idseekbar
Seekbar seekbar = (SeekBar) findViewById(R.id.seekbar);
And then you will set the value that you want to set
seekbar.max = yourNewValue;