的onClick方法问题(onClick method issue)

2019-08-19 23:54发布

好了,所以我要通过“MyFirstApp”对devoloper.android.com网站上的教程。 我在上一讲,我已经对你说的八九不离十第一章所做的一切。 唯一的一点是,在“再掀活动”课程结束,在最后它告诉你运行应用程序。 好吧,当我运行它,它看起来与在模拟器上一个可点击的按钮,但是当你点击它,它就会运行时错误和部队密切。 我试图做一些这方面的研究,但不是发生了什么事的线索。 错误是:java.lang.IlleglStateException:找不到在活动课com.example.MyFirstApp.MainActivity为的onClick处理程序上的视图类上android.widet.B的方法的SendMessage(图)我要显示的代码这个:

MainActivity:

package com.example.myfirstapp;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.view.View;
import android.widget.EditText;

public class MainActivity extends Activity {
    public final static String EXTRA_MESSAGE = "com.example.myfirstapp.MESSAGE";    

    /** Called when the user clicks the Send button */
    public void sendMessage(View view) {
        Intent intent = new Intent(this, DisplayMessageActivity.class);
        EditText editText = (EditText) findViewById(R.id.edit_message);
        String message = editText.getText().toString();
        intent.putExtra(EXTRA_MESSAGE,  message);
        startActivity(intent);
        // Do something in response to button
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

}

activity_display_message:

<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=".DisplayMessageActivity" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

</RelativeLayout>

DisplayMessageActivity.java:

package com.example.myfirstapp;

import android.annotation.SuppressLint;
import android.annotation.TargetApi;
import android.app.ActionBar;
import android.app.Activity;
import android.content.Intent;
import android.os.Build;
import android.os.Bundle;
import android.support.v4.app.NavUtils;
import android.view.MenuItem;
import android.widget.TextView;

public class DisplayMessageActivity extends Activity {

    @SuppressLint("NewApi")
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        // Get the message from the intent
        Intent intent = getIntent();
        String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);

        // Create the text view
        TextView textView = new TextView(this);
        textView.setTextSize(40);
        textView.setText(message);

        // Set the text view as the activity layout
        setContentView(textView);

        // Make sure we're running on Fry or higher to use ActionBar APIs
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.FROYO) {
            // Show the Up button in the action bar.
            getupActionBar().setDisplayHomeAsUpEnabled(true);
        }
    }

    private ActionBar getupActionBar() {
        // TODO Auto-generated method stub
        return null;
    }

    /**
     * Set up the {@link android.app.ActionBar}, if the API is available.
     */
    @TargetApi(Build.VERSION_CODES.HONEYCOMB)
    private void setupActionBar() {
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
            getActionBar().setDisplayHomeAsUpEnabled(true);
        }
    }


    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        switch (item.getItemId()) {
        case android.R.id.home:
            // This ID represents the Home or Up button. In the case of this
            // activity, the Up button is shown. Use NavUtils to allow users
            // to navigate up one level in the application structure. For
            // more details, see the Navigation pattern on Android Design:
            //
            // http://developer.android.com/design/patterns/navigation.html#up-vs-back
            //
            NavUtils.navigateUpFromSameTask(this);
            return true;
        }
        return super.onOptionsItemSelected(item);
    }

}

Answer 1:

它看起来就像你在你的XML拼错的函数名称的Button onClick() 你在Java代码中有一个大写的“M”

 public void sendMessage(View view) {

在XML和可能是一个小写的“M”

<Button
...
android:onClick="sendmessage"/>

为了符合Java标准,在XML将其更改为

 android:onClick="sendMessage"/>


Answer 2:

我认为你得到的意向消息的错误的方式。 EXTRA_MESSAGE是内容和message是标识符。

所以,在你的代码DisplayMessageActivity.java

String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);

实际上应该是:

String message = intent.getStringExtra(message);


Answer 3:

您可以在activity_main.xml中看到你要申报与按钮onClick()这种方式,然后,然后它会工作。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Click" 
        android:onClick="sendMessage()"/>

</LinearLayout>


文章来源: onClick method issue