自我感觉这里的排版看着更舒服些。 Activity跳转方式总结
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1、显式调用方法
方法一:
Intent intent=new Intent(本类,将要跳转的类); //Intent intent=new Intent(MainActivity.this,JumpToActivity.class);
startActivity(intent);
方法二:
Intent intent2=new Intent();
intent2.setClass(本类,将要跳转的类); // intent2.setClass(MainActivity.this,JumpToActivity.class);
startActivity(intent2);
方法三:(此方式可用于打开其它的应用)
Intent intent2=new Intent();
intent2.setComponent(new ComponentName(MainActivity.this, JumpToActivity.class));
startActivity(intent2);
component,目标组件的包或类名称(完整类名):
在使用component进行匹配时,一般采用以下几种形式:
intent.setComponent(new ComponentName(getApplicationContext(), JumpToActivity.class));
intent.setComponent(new ComponentName(getApplicationContext(), “com.liujc.test.JumpToActivity”));
intent.setComponent(new ComponentName(“com.liujc.test”, “com.liujc.test.JumpToActivity”));
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2:隐式调用方法
通过action跳转:
Intent intent = new Intent();
intent.setAction(“con.liujc.test.jump”);
startActivity(intent);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
需要将要跳转到的Activity在AndroidManifest.xml中设置action:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
通过Scheme跳转协议跳转:
android中的scheme是一种页面内跳转协议,是一种非常好的实现机制,通过定义自己的scheme协议,可以非常方便跳转app中的各个页面;通过scheme协议,服务器可以定制化告诉App跳转那个页面,可以通过通知栏消息定制化跳转页面,可以通过H5页面跳转页面等。
URL Scheme协议格式:
scheme://host:port/path 模式://主机:端口/路径
完整的URL Scheme协议格式:liujc://goods:8080/goodsDetail?goodsId=20170112
上面的路径 Scheme、Host、port、path、query全部包含:
liujc代表该Scheme 协议名称
goods代表Scheme作用于哪个地址域
goodsDetail代表Scheme指定的页面
goodsId代表传递的参数
8080代表该路径的端口号
URL Scheme如何使用:
在AndroidManifest.xml中对标签增加设置Scheme:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
获取Scheme跳转的参数:
Uri uri = getIntent().getData();
if (uri != null) {
// 完整的url信息
String url = uri.toString();
Log.e(TAG, “url: ” + uri);
// scheme部分
String scheme = uri.getScheme();
Log.e(TAG, “scheme: ” + scheme);
// host部分
String host = uri.getHost();
Log.e(TAG, “host: ” + host);
//port部分
int port = uri.getPort();
Log.e(TAG, “host: ” + port);
// 访问路劲
String path = uri.getPath();
Log.e(TAG, “path: ” + path);
List pathSegments = uri.getPathSegments();
// Query部分
String query = uri.getQuery();
Log.e(TAG, “query: ” + query);
//获取指定参数值
String goodsId = uri.getQueryParameter(“goodsId”);
Log.e(TAG, “goodsId: ” + goodsId);
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
调用方式:
网页上:(使用系统自带浏览器或者谷歌浏览器)
打开商品详情
原生调用:
Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse(“liujc://goods:8080/goodsDetail?goodsId=20170112”));
startActivity(intent);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
如何判断一个Scheme是否有效,有效后再启动:
PackageManager packageManager = getPackageManager();
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(“liujc://goods:8080/goodsDetail?goodsId=20170112”));
List activities = packageManager.queryIntentActivities(intent, 0);
boolean isValid = !activities.isEmpty();
if (isValid) {
startActivity(intent);
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
小奋斗文章
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
今天的文章android activity的跳转,Android Activity跳转方式总结分享分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/32460.html