为什么我不能使用XML onClick属性进行事件处理?

时间:2015-06-24 17:45:06

标签: android

我正在编写一个简单的计算机,它基本上在文本视图中显示了我在两个编辑文本中输入的2个数字的总和。从理论上讲,它应该是正确的,但在我的情况下,我觉得出了问题,可能是缺少组件。起初,我认为这个问题来自编辑文本,但后来我改变了它并没有发生任何新的事情。这让我怀疑onClick属性的使用。按下按钮时程序自动停止

具体来说,我有我的java代码

package com.example.computing_machine;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;


public class Computing_Machine extends Activity {
private TextView text;

protected void onCreate(Bundle x) {
    super.onCreate(x);
    setContentView(R.layout.activity_computing_machine);

    text = (TextView) findViewById(R.id.textView3);
}

public void sum(View v) {
/*  EditText e1= (EditText) findViewById(R.id.editText1);
    EditText e2= (EditText) findViewById(R.id.editText2);

    int a  = Integer.parseInt(e1.getText() + "");
    int b  = Integer.parseInt(e2.getText() + ""); */

    text.setText(5);
}
}

这是我的XML文件

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.computing_machine.Computing_Machine" >

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:layout_alignParentTop="true"
    android:text="@string/number1"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/textView1"
    android:layout_alignStart="@+id/textView1"
    android:layout_below="@+id/textView1"
    android:layout_marginTop="23dp"
    android:text="@string/number2"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<EditText
    android:id="@+id/editText1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignTop="@+id/textView1"
    android:layout_marginLeft="24dp"
    android:layout_marginStart="24dp"
    android:layout_toRightOf="@+id/textView1"
    android:layout_toEndOf="@+id/textView1"
    android:ems="10"
    android:inputType="numberSigned" >

    <requestFocus />
</EditText>

<EditText
    android:id="@+id/editText2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/editText1"
    android:layout_alignStart="@+id/editText1"
    android:layout_below="@+id/editText1"
    android:ems="10"
    android:inputType="numberSigned" > 

    <requestFocus />
</EditText>

<TextView
    android:id="@+id/textView3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/textView2"
    android:layout_alignStart="@+id/textView2"
    android:layout_alignRight="@+id/editText2"
    android:layout_below="@+id/editText2"
    android:layout_alignEnd="@+id/editText2"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/textView3"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="38dp" 
    android:onClick="sum"/>

3 个答案:

答案 0 :(得分:1)

试试这个:

<强>代码:

int a  = Integer.parseInt(""+e1.getText().toString());
int b  = Integer.parseInt(""+e2.getText().toString());

答案 1 :(得分:1)

执行setText(int)是指从XML文件中引用应用程序资源,而不是值本身。

要设置整数属性,请执行以下操作:

text.setText(String.valueOf(5));

答案 2 :(得分:0)

尝试

text.setText("" + 5);

setText以字符串作为参数。您正在传递int