我已经设置了一个按钮,当用户点击它时,我试图显示一个 toast。这是我的Java代码-
file = (Button) findViewById(R.id.file);
file.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// Display the file chooser dialog
//showChooser();
Toast.makeText(getApplicationContext(), "this is my Toast message!!! =)", Toast.LENGTH_LONG).show();
}
});
这是我设置按钮的 XML 代码 -
<Button
android:id="@+id/file"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/plt"
android:text="File" />
这会在行上引发 NullPointerException file.setOnClickListener(new OnClickListener() {
。我究竟做错了什么?