赞
踩
Intent在Android系统的作用:
1、传递普通数据
两个Activity之间数据传递,从 MainActivity 跳转到 SecondActivity,同时传递数据
栗子:传值
activity_main
<LinearLayout 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" android:orientation="vertical" tools:context="com.siliconvalley.xy.sms.MainActivity" android:padding="15dp"> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="请输入用户名" /> <EditText android:id="@+id/et_username" android:layout_width="match_parent" android:layout_height="wrap_content" /> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="请选择性别" /> <RadioGroup android:id="@+id/rg_male" android:layout_width="match_parent" android:layout_height="wrap_content"> <RadioButton android:id="@+id/rb_male" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="男" /> <RadioButton android:id="@+id/rb_female" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="女" /> </RadioGroup> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="请输入年龄" /> <EditText android:id="@+id/et_age" android:layout_width="match_parent" android:layout_height="wrap_content" android:inputType="number"/> <Button android:id
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。