在 Android 上更新弹出 window 上的文本视图时出错
Error while updating textview on popup window on Android
我有一个简单的应用程序,每次单击按钮时都会更新数字。这在正常 Activity 上非常有效。
但是,现在我制作了一个弹出窗口 window,我想在里面做同样的事情,但是当单击弹出窗口 window 中的按钮时,我收到错误消息:
android.content.res.Resources$NotFoundException: String resource ID #0x1
当我尝试更新弹出窗口中的 TextView 时出现错误 window
这是我的简单代码,它在普通 Activity 上再次完美运行:
public class PopActivity extends Activity {
private WorkOutClass the_workout_class = new WorkOutClass();
private TextView repTextField, setsTextField;
private Button den_knappen;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_pop);
repTextField = (TextView) findViewById(R.id.repetitionID);
setsTextField = (TextView) findViewById(R.id.setsID);
den_knappen = (Button) findViewById(R.id.buttonID);
repTextField.setText("" + the_workout_class.getReps());
setsTextField.setText(""+ the_workout_class.getSets());
DisplayMetrics dm = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(dm);
int width = dm.widthPixels;
int height = dm.heightPixels;
getWindow().setLayout((int)(width*.8), (int)(height*.7));
WindowManager.LayoutParams params = getWindow().getAttributes();
params.gravity = Gravity.CENTER;
params.x = 0;
params.y = 20;
getWindow().setAttributes(params);
den_knappen.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
the_workout_class.increaseReps();
repTextField.setText(the_workout_class.getReps()); // Normally this works perfectly, but here i get ERROR
setsTextField.setText(the_workout_class.getReps()); // Normally this works perfectly, but here i get ERROR
}
});
}}
有人可以帮我吗?
您的方法 getReps()
是 return 整数值,因此您必须像下面这样设置文本
repTextField.setText(String.valueFrom(the_workout_class.getReps()));
setsTextField.setText(String.valueFrom(the_workout_class.getReps()));
我有一个简单的应用程序,每次单击按钮时都会更新数字。这在正常 Activity 上非常有效。
但是,现在我制作了一个弹出窗口 window,我想在里面做同样的事情,但是当单击弹出窗口 window 中的按钮时,我收到错误消息:
android.content.res.Resources$NotFoundException: String resource ID #0x1
当我尝试更新弹出窗口中的 TextView 时出现错误 window
这是我的简单代码,它在普通 Activity 上再次完美运行:
public class PopActivity extends Activity {
private WorkOutClass the_workout_class = new WorkOutClass();
private TextView repTextField, setsTextField;
private Button den_knappen;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_pop);
repTextField = (TextView) findViewById(R.id.repetitionID);
setsTextField = (TextView) findViewById(R.id.setsID);
den_knappen = (Button) findViewById(R.id.buttonID);
repTextField.setText("" + the_workout_class.getReps());
setsTextField.setText(""+ the_workout_class.getSets());
DisplayMetrics dm = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(dm);
int width = dm.widthPixels;
int height = dm.heightPixels;
getWindow().setLayout((int)(width*.8), (int)(height*.7));
WindowManager.LayoutParams params = getWindow().getAttributes();
params.gravity = Gravity.CENTER;
params.x = 0;
params.y = 20;
getWindow().setAttributes(params);
den_knappen.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
the_workout_class.increaseReps();
repTextField.setText(the_workout_class.getReps()); // Normally this works perfectly, but here i get ERROR
setsTextField.setText(the_workout_class.getReps()); // Normally this works perfectly, but here i get ERROR
}
});
}}
有人可以帮我吗?
您的方法 getReps()
是 return 整数值,因此您必须像下面这样设置文本
repTextField.setText(String.valueFrom(the_workout_class.getReps()));
setsTextField.setText(String.valueFrom(the_workout_class.getReps()));