Intent在android的意思是意图,简单来说就是为了实现某种功能而产生的动作。意图又分为显示意图和隐式意图,显示意图主要使用在应用的内部,如果需要调用系统的某些东西就要使用到隐式意图。下面来看下代码的表现形式
下面是显示意图
Intent intent=new Intent(MainActivity.this,ThreeActivity.class); Bundle bundle=new Bundle(); bundle.putString("company", "软通动力"); intent.putExtras(bundle); startActivity(intent);
Intent intent=new Intent(Intent.ACTION_CALL,Uri.parse("tel:"+number)); startActivity(intent);
1.下面的内容就是怎么来添加一个意图了,所有的意图都要经过意图过滤器的处理
<activity android:name=".OtherActivity" android:label="@string/app_name"> <intent-filter> <action android:name="com.junze.huiju"/> <category android:name="android.intent.category.DEFAULT" /> <data android:scheme="com.junze.walkiesoft" android:host="person" android:path="/person" android:mimeType="image/gif"/> </intent-filter> </activity>
下面的2个在一个activity里也只能出现一次
<action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" />
下面是一个完整的activity代码
public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); Button b=(Button)this.findViewById(R.id.button); b.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub //开始激活意图 Intent intent=new Intent(); intent.setAction("com.junze.huiju"); //intent.setData(Uri.parse("com.junze.walkiesoft://person/person")); intent.setDataAndType(Uri.parse("com.junze.walkiesoft://person/person"), "image/gif"); startActivity(intent); } });
另外我自己也练习了一下activity之间的数据传递,代码也很简单
Intent intent=new Intent(MainActivity.this,ThreeActivity.class); Bundle bundle=new Bundle(); bundle.putString("company", "软通动力"); intent.putExtras(bundle); startActivity(intent);
//获取传递过来的数据 Bundle bundle=getIntent().getExtras(); Toast.makeText(ThreeActivity.this,bundle.getString("company"),Toast.LENGTH_LONG).show();
public void onCreate(Bundle savedInstanceState) {
}
@Override
protected void onStart() {
Log.i(TAG, "onStart");
super.onStart();
}
@Override
protected void onRestart() {
Log.i(TAG, "onRestart");
super.onRestart();
}
@Override
protected void onResume() {
Log.i(TAG, "onResume");
super.onResume();
}
@Override
protected void onPause() {
Log.i(TAG, "onPause");
super.onPause();
}
@Override
protected void onStop() {
Log.i(TAG, "onStop");
super.onStop();
}
@Override
protected void onDestroy() {
Log.i(TAG, "onDestroy");
super.onDestroy();
}
建议写几段代码自己运行看看效果,这个自己理解比较好,代码区我的资源里下载