android.content.ActivityNotFoundException: No Activity found to handle Intent做Android开发中,使用隐式intent,Manifest中设置了action和category,如下: ...
分类:
移动开发 时间:
2015-06-06 23:28:06
阅读次数:
187
intent简介intent用于组件之间的跳转,它在程序运行时连接两个组件;intent分为显式intent和隐式intent,显式intent常用在本应用之间组件的跳转,隐式intent常用于在不同应用之间组件的跳转。通过Intent,你可以向Android提交一个请求,Android会根据Intent的意愿来选择合适的组件来响应请求。...
分类:
移动开发 时间:
2015-05-31 16:52:57
阅读次数:
286
原文网址:http://blog.csdn.net/xiao__gui/article/details/11392987Intent是Android初学者比较难理解的一个东西。我这里以通俗易懂的语言和通俗易懂的代码,让初学者简单感受一下Intent。intent就是意图的意思。Intent分两种:显...
分类:
移动开发 时间:
2015-05-05 15:56:29
阅读次数:
186
前面的博客我们见到过Intent,我们通过他来指定activity之间的跳转,及数据的传递。下面我们来了解下Intent,Intent在我们的应用中分为显示和隐式两种方式。显示Intent见下面这段程序 protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);...
分类:
移动开发 时间:
2015-04-16 17:40:55
阅读次数:
203
本文将详细介绍Android开发中如何使用intent跳转,包括使用intent调用系统应用...
分类:
移动开发 时间:
2015-04-16 12:33:08
阅读次数:
132
本文通过完成一个实战任务,来掌握Android开发中隐式Intent的用法。任务:假设我们已经实现了一个视频播放器(PlayerActivity),我们希望能把它注册到系统中,当用户点击本地视频或者在线视频时,能启动这个视频播放器。(假设该类的全路径为:com.jhuster.videoplayer.Player..
分类:
移动开发 时间:
2015-03-19 06:42:12
阅读次数:
183
一、启动android默认浏览器在Android程序中我们可以通过发送隐式Intent来启动系统默认的浏览器。如果手机本身安装了多个浏览器而又没有设置默认浏览器的话,系统将让用户选择使用哪个浏览器来打开连接。关于Intent的更多内容请参考《常用Intent》示例1Intent intent =ne...
分类:
其他好文 时间:
2015-03-16 15:49:29
阅读次数:
114
今天开始更新一下android的基本知识,下面是敲代码遇到的问题。1)我们来谈谈android.intent.category.DEFAULT的用途。 在谈这个tag的用途之前,读者要明白什么是implicit intent还有什么是explicit intent。即什么是隐式intent还有显式i...
分类:
移动开发 时间:
2015-02-28 15:52:33
阅读次数:
303
package com.example.yinshiintent;
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnCl...
分类:
其他好文 时间:
2015-01-23 23:03:46
阅读次数:
250
隐式Intent不明确指出我们想要启动哪个活动,而是指定了一系列的action、data或category等信息,然后交由系统去分析这个Intent,并帮我们找出合适的活动去启动
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.an...
分类:
其他好文 时间:
2015-01-23 23:03:32
阅读次数:
216