当引用EditText对象时,我在onClick方法中遇到错误。
public class messageActivity extends AppCompatActivity {
EditText editText;
Button button;
Logic logic;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_message);
editText = (EditText) findViewById(R.id.editText);
button = (Button) findViewById(R.id.button6);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
logic.message(editText.getText().toString());
}
});
}
}
以下是我的活动中EditText
小部件的XML:
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/editText"
android:layout_below="@+id/textView3"
android:layout_centerHorizontal="true"
android:layout_marginTop="83dp"
android:inputType="textShortMessage"
android:editable="false" />
答案 0 :(得分:1)
我怀疑Logic
是你的课程之一?您收到NullPointerException
因为变量logic
未使用值初始化 - 您需要在执行logic.message
之前实例化逻辑。