gpt4 book ai didi

android - seekbar android中的运行时错误

转载 作者:搜寻专家 更新时间:2023-11-01 08:55:45 29 4
gpt4 key购买 nike

我已经创建了搜索栏,我想更新 TextView 中的搜索栏值。我做了以下事情。

布局文件的一部分是,

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1.15" >

<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="49dp"
android:background="@drawable/circle"
android:orientation="vertical" >



<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1.90" >

<TextView
android:id="@+id/seekvalue"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:text=" " />
</RelativeLayout>
</LinearLayout>

<SeekBar
android:id="@+id/showvalue"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/linearLayout1" />

java代码是,

text=(TextView)findViewById(R.id.seekvalue);
// slide_me.setRightBehindContentView(R.layout.right_menu);

slider=(SeekBar)findViewById(R.id.showvalue);
slider.setOnSeekBarChangeListener(new OnSeekBarChangeListener() {
// int progressChanged = 0;

public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser){
// progressChanged = progress;
text.setText(progress);
}

public void onStartTrackingTouch(SeekBar seekBar) {
// TODO Auto-generated method stub
}

public void onStopTrackingTouch(SeekBar seekBar) {

}
});

我有以下运行时错误

09-29 08:08:51.732: E/AndroidRuntime(428): FATAL EXCEPTION: main
09-29 08:08:51.732: E/AndroidRuntime(428): android.content.res.Resources$NotFoundException: String resource ID #0x1
09-29 08:08:51.732: E/AndroidRuntime(428): at android.content.res.Resources.getText(Resources.java:201)
09-29 08:08:51.732: E/AndroidRuntime(428): at android.widget.TextView.setText(TextView.java:2817)
09-29 08:08:51.732: E/AndroidRuntime(428): at com.android.waitress.Calculator$1.onProgressChanged(Calculator.java:39)
09-29 08:08:51.732: E/AndroidRuntime(428): at android.widget.SeekBar.onProgressRefresh(SeekBar.java:89)
09-29 08:08:51.732: E/AndroidRuntime(428): at android.widget.ProgressBar.doRefreshProgress(ProgressBar.java:506)

所以请帮帮我...谢谢

最佳答案

您的 progress 是一个 Integer,因此 TextView 会将其理解为“资源 ID”。要解决此问题:

text.setText("" +progress);

关于android - seekbar android中的运行时错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19073928/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com