我是安卓新手。我的活动的一部分包含
TextView message = (TextView) findViewById(R.id.show_message);
Intent intent = getIntent();
String name = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);
message.setText(name);
MainActivity
是调用当前活动的上一个活动。此外,上述活动的布局文件是
<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" >
<TextView
android:id="@+id/show_message"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_width="wrap_content">
</TextView>
<Button
android:id="@+id/button_back"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/show_message"
android:layout_centerHorizontal="true"
android:layout_marginTop="17dp"
android:onClick="goBack"
android:text="Go Back to Activity Lifecycle" />
我知道它message.setText(name)
设置了String
toname
但message
它怎么也改变了show_message
?在Activity
应用程序中启动时,它会显示应该显示String
的位置的值。name
show_message
实际上,我希望代码以现在的方式执行,但我不明白为什么。
提前致谢!