Activity间中使用Intent传值
主页面用来输入一个值传入第二个页面显示,关闭第二个页面返回一个值 主页布局: <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" tools:context=".MainActivity" > <TextView android:id="@+id/view" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="关闭第二个页面后返回值" /> <EditText android:id="@+id/txt" android:layout_width="match_parent" android:layout_...

