我正在使用创建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);
}
答案 0 :(得分:1)
抱歉我周末离开电脑的响应时间。这就是说你在sendMessage函数的末尾缺少这一行:
startActivity(intent);
这告诉您使用您创建的意图启动活动。现在,您正在创建一个意图,但不会将其发送到任何地方。希望有所帮助。