标签:按键 介绍 rri default out image protect 监听事件 http
1、android:scheme:用于指定数据的协议部分,如http
2、android:host:用于指定数据的主机名部分,如www.baidu.com
3、android:port:用于指定数据的端口部分,一般紧随主机名之后
4、android:path:用于指定主机名和端口之后的部分
5、android:mimeType:用于指定可以处理的数据类型,允许使用通配符的方式进行指定
只有标签中指定的内容和Intent中携带的Data完全一致时,当前活动才能够响应该Intent。不过一般在标签中都不会指定过多的内容
## 2、在AndroidManifest.xml文件中修改注册信息
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
,<action android:name="android.intent.action.View"/> //当前活动能响应是action的Intent
<action android:name="android.intent.category.DEFAULT"/> //指定了默认的category值
<data android:scheme="http"/> //指定数据的协议必须是http协议
</intent-filter>
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main); //为活动加载布局
Button button =(Button) findViewById(R.id.button1); //获得按键的实例
button.setOnClickListener(new View.OnClickListener(){ //设置按键的监听事件
@Override
public void onClick(View v){ //点击按键
Intent intent=new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("http://www.baidu.com")); //通过uri.parse()方法就网址字符串解析为一个uri对象
startActivity(intent); //启用这个Intent
}
});
}
标签:按键 介绍 rri default out image protect 监听事件 http
原文地址:http://www.cnblogs.com/aqyl/p/6659728.html