0

我正在使用创建 MyFirstApp 的教程。我已经达到了遵循所有教程的地步,并且已经达到了它不起作用的地步。该教程说“您现在可以运行该应用程序。当它打开时,在文本字段中输入一条消息,单击发送,该消息将出现在第二个活动中。” 但它在我的设备上不起作用,发送按钮除了一直被按下时变成蓝色之外什么都不做。对于这一点,我的代码 onCreate(Bundle) 是:

@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(R.layout.activity_display_message);

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

另外,我的 activity_main.xml :

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/button_send"
    android:onClick="sendMessage" />

和我的 MainActivity.java 部分:

/** Called when the user clicks the send button */
public void sendMessage (View view) {
    // Do something in response to button
    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);
}
4

1 回答 1

1

对不起,我周末离开电脑的响应时间。话虽如此,您在 sendMessage 函数的末尾缺少这一行:

startActivity(intent);

这告诉活动以您创建的意图开始。现在您正在创建一个意图,但没有将其发送到任何地方。希望有帮助。

于 2013-07-01T22:42:10.193 回答