我正在使用创建 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);
}