无法在onClickListener上查看我的TextView内部按钮

时间:2012-03-06 07:34:47

标签: java android textview

大家早上好,

我想知道为什么我的textview不会显示在我的应用中。我在按钮的onClick方法中声明了它们,所以就像点击按钮一样,弹出它们。它基本上用于“输入”类型的按钮,如果用户输入正确答案,则在textview中显示正确,否则出错。

public void Easy12(){
    Random rand = new Random();
    int a = (int) rand.nextInt(100)+1;
    int b = (int) rand.nextInt(100)+1;
    final TextView tv = (TextView) findViewById(R.id.question_label);
    String aString = Integer.toString(a);
    String bString = Integer.toString(b);
    String display = aString + " + " + bString + " =";
    tv.setText(display);
    final int c = a + b;

    final Button buttonhash = (Button) findViewById(R.id.keypad_hash);
    buttonhash.setOnClickListener(new OnClickListener(){
        public void onClick(View v) {
            final EditText edittext = (EditText) findViewById(R.id.USERentry);
            if(edittext.getText().equals(c)){
                final TextView answerLabel = (TextView) findViewById(R.id.rightwrong_label);
                answerLabel.setText(R.string.answer_correct);
                answerLabel.setTextColor(R.color.correct_color);
            }
            else
            {
                final TextView answerLabel = (TextView) findViewById(R.id.rightwrong_label);
                answerLabel.setText(R.string.answer_wrong);
                answerLabel.setTextColor(R.color.wrong_color);
            }
        }
    });

}

我必须制作单独的textview,调用相同的textview,因为括号不会识别它们。这个方法是我的Game类的一部分,它只显示一个表达式,并通过按屏幕上的a按钮检查用户的回答是否正确。如果有人知道什么是错的,请分享。谢谢

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="fill_parent" 
          android:layout_height="fill_parent" 
          android:orientation="vertical" >
<TextView android:id="@+id/question_label"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"/>
<TextView android:id="@+id/rightwrong_label"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"/>
<EditText
android:id="@+id/USERentry"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@android:drawable/editbox_background"
android:textColor="@color/user_txt_color"/>
<TableLayout....

2 个答案:

答案 0 :(得分:1)

这是因为您的View没有得到更新,您正在编写textViews。尝试通过重新绘制视图来刷新视图,或者通过一些意图来查看写入部分是否正常工作

答案 1 :(得分:1)

否则,如果您有兴趣使用“TOAST”方法,

Toast.makeText(LoginpageActivity.this, "Write your text here to display", Toast.LENGTH_LONG).show();

此处,“LoginpageActivity”是当前的班级名称