`
亚当爱上java
  • 浏览: 706068 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

android notepad详解

阅读更多
intent (receiver)
intent receiver是什么呢,其实她和activity,service一样响应相对应的intent,只不过intent-receiver多为接收事件,然后启动具体的activity,接收外部的intent ,它没有ui界面,有点像是:activity是老板,而intent-reciever像是秘书,intent-recieve为activity打理各种事情,然后通知老板即可,其实intent-reciever和sevice是比较接近的,intent-receiver可以看成是 activity的代理,或者是输入事件型的service,是事件来了就处理,且很快能处理完,而service只是service是长生命周期的,往往需要长时间运行,通常为多个activity服务,正因为这个,他们的资源回收优先级也不同。既然activity,intent- reciever,service都用到intent ,那我们来说说 intent 。

那 intent 究竟是什么呢?

    上面我们提到过, activity 是相互独立,一般他们是独立进程。但是刚才提到的面向服务要求又要求各个 activity 有高频率的交互,这个怎么解决。这个解决方案就是使用 intent.

其实我们可以将 intent 看成是 activity 通信的标准的。比如 Intent 中的内容告诉了系统激发 intent 的 activity 需要什么服务,服务者 activity 应该满足的条件。然后就是 android 系统的事了,它负责找出符合条件的 activity 服务者,并将 intent 给 activity 服务者,然后这个 acitivity 根据 intent 中剩余的信息做出相应的操作。

由上面可知, intent 包含两部分信息:

1.        activity 服务者的信息,这个是给 android 用来找到合适 activity 的。

2.        activity 服务者要做什么操作的信息,这个是给 activity 服务者用的。

我们就以 android 自带 notepad 实例程序来说这个过程;

     在 android 的 notepad 实例程序中,入口 activity 是 notelist 。

这里有一个 onlistItenclick 函数。

protected void onListItemClick(ListView l, View v, int position, long id) {

        Uri uri = ContentUris.withAppendedId (getIntent().getData(), id);

       

        String action = getIntent().getAction();

        if (Intent. ACTION_PICK .equals(action) || Intent. ACTION_GET_CONTENT .equals(action)) {

            // The caller is waiting for us to return a note selected by

            // the user.  The have clicked on one, so return it now.

            setResult( RESULT_OK , new Intent().setData(uri));

        } else {

            // Launch activity to view/edit the currently selected item

             startActivity(new Intent(Intent.ACTION_EDIT , uri));

        }

这个函数在 listview 的 item 被单击时执行。

我们首先注意的就是这个函数。

startActivity( new Intent(Intent. ACTION_EDIT , uri));

这个函数有一个 intent 对象,这个就是我们上面谈到的。

new Intent(Intent.ACTION_EDIT , uri) 这个可以看出 intent 承载了两个数据,一个是 uri 对像,一个是 Intent. ACTION_EDIT , 这个其实就是一个字符串变量,系统定义一些常量,当然也可使用你自己定义的。






如上图是程序运行后的效果,当我们点 First 项时就会执行 onListItemClick, 然后就会执行 startActivity(new Intent(Intent.ACTION_EDIT , uri)); 这个函数然后就到 android 系统了 ,android 通过 intent 中的信息找到对应的 activity, 在这里是 NoteEditor activity ,然后就会显示如下 .





  

那 android 是怎样找到的对应的 activity 的呢?

这个就是 intent 发挥作用的时候了。

下面我们就来讲讲:

     new Intent(Intent.ACTION_EDIT , uri)

这个函数中 Intent.ACTION_EDIT =” android.intent.action.EDIT”

Uri 中一个重要的元素是 : Uristring

这个其实是 uri 特征标志,通过设断点,我们看下这里的 uri 值。





从上图可以看出是 Uristring =content://com.google.provider.NotePad /notes/1

然后我们看下 Androidmanfest.xml,

其中有这个

< provider android:name = "NotePadProvider"

            android:authorities = " com.google.provider.NotePad "

        />

发现没,也有 com.google.provider.NotePad ,这个是 content://com.google.provider.NotePad/notes/1 的一部分,同时

< activity android:name = "NoteEditor"

            android:theme = "@android:style/Theme.Light"

            android:label = "@string/title_note"

        >

            <!-- This filter says that we can view or edit the data of

                 a single note -->

            < intent-filter android:label = "@string/resolve_edit" >

                < action android:name = "android.intent.action.VIEW" />

                < action android:name = " android.intent.action.EDIT " />

                < action android:name = "com.android.notepad.action.EDIT_NOTE" />

                < category android:name = "android.intent.category.DEFAULT" />

                < data android:mimeType = "vnd.android.cursor.item/vnd.google.note" />

            </ intent-filter >

 

            <!-- This filter says that we can create a new note inside

                 of a directory of notes. -->

            < intent-filter >

                < action android:name = "android.intent.action.INSERT" />

                < category android:name = "android.intent.category.DEFAULT" />

                < data android:mimeType = "vnd.android.cursor.dir/vnd.google.note" />

            </ intent-filter >

 

        </ activity >

上面有 android.intent.action.EDIT 正好是

Intent.ACTION_EDIT =” android.intent.action.EDIT ”

这个时候估计大家看出了一点端倪。

现在就开始进入 activity 选择机制:

在函数 startActivity 执行后,系统接管,然后系统通过获取 intent 中的 uri ,找到了 content://com.google.provider.NotePad/notes/1, 去掉开始的 content: 标识,得到 com.google.provider.NotePad/notes/1, 然后获取前面的 com.google.provider.NotePad ,然后就到注册了的 Androidmanfest.xml 找 authorities 为 com.google.provider.NotePad 的 provider ,这个就是后面要讲的 contentprovider, 然后就加载 provider 。

< provider android:name = "NotePadProvider"

            android:authorities = " com.google.provider.NotePad "

        />

在这里是 NotePadProvider, 然后调用 NotePadProvider 的 gettype 函数得到服务的类型。

public String getType(Uri uri) {

        switch ( sUriMatcher .match(uri)) {

        case NOTES :

            return Notes. CONTENT_TYPE ;

 

        case NOTE_ID :

            return Notes. CONTENT_ITEM_TYPE ;

 

        default :

            throw new IllegalArgumentException( "Unknown URI " + uri);

        }

上面的 sUriMatcher.match 用来检测 uri 看自己能不能处理,在这里会返回 return Notes.CONTENT_ITEM_TYPE;

这个是 public static final String CONTENT_ITEM_TYPE = " vnd.android.cursor.item/vnd.google.note ";

sUriMatcher .match(uri) 返回值其实是由

sUriMatcher = new UriMatcher(UriMatcher. NO_MATCH );

        sUriMatcher .addURI(NotePad. AUTHORITY , "notes" , NOTES );

        sUriMatcher .addURI(NotePad. AUTHORITY , "notes/#" , NOTE_ID );

决定的。

如果我们人为的将前面 uri 的 string 改为 content://com.google.provider.NotePad/notes/100, 然后 match 会正常返回 Notes. CONTENT_ITEM_TYPE . 可以找到相应 activity ,但是在 activity 执行 managedQuery 时,调用 content-provider ,这个然后发现不存在 id=100 的数据项,就会异常,然后这个 activity 就会 stop.

在这里是正常返回了 vnd.android.cursor.item/vnd.google.note

然后系统将这个和” android.intent.action.EDIT ” 到 androidmanfest.xml 去找匹配的 activity.

< intent-filter android:label = "@string/resolve_edit" >

                < action android:name = "android.intent.action.VIEW" />

                < action android:name = " android.intent.action.EDIT " />

                < action android:name = "com.android.notepad.action.EDIT_NOTE" />

                < category android:name = "android.intent.category.DEFAULT" />

                < data android:mimeType = " vnd.android.cursor.item/vnd.google.note " />

            </intent-filter>

正好满足上面 noteedit activity 的 intent-filter 条件 , 这样就找到了 noteedit activity.

然后就加载这个类实例化,运行,然后就到了 notedit 的 oncreate 。

protected void onCreate(Bundle savedInstanceState) {

        super .onCreate(savedInstanceState);

 

        final Intent intent = getIntent();

 

        // Do some setup based on the action being performed.

final String action = intent.getAction();

        if (Intent. ACTION_EDIT .equals(action)) {

            // Requested to edit: set that state, and the data being edited.

            mState = STATE_EDIT ;

            mUri = intent.getData();

        } else if (Intent. ACTION_INSERT .equals(action)) {

            // Requested to insert: set that state, and create a new entry

            // in the container.

            mState = STATE_INSERT ;

            mUri = getContentResolver().insert(intent.getData(), null );

 

            // If we were unable to create a new note, then just finish

            // this activity.  A RESULT_CANCELED will be sent back to the

            // original activity if they requested a result.

            if ( mUri == null ) {

                 Log.e ( TAG , "Failed to insert new note into " + getIntent().getData());

                finish();

                return ;

            }

 

            // The new entry was created, so assume all will end well and

            // set the result to be returned.

            setResult( RESULT_OK , ( new Intent()).setAction( mUri .toString()));

 

        } else {

            // Whoops, unknown action!  Bail.

            Log.e ( TAG , "Unknown action, exiting" );

            finish();

            return ;

        }

 

         // Set the layout for this activity.  You can find it in res/layout/note_editor.xml

        setContentView(R.layout. note_editor );

       

        // The text view for our note, identified by its ID in the XML file.

        mText = (EditText) findViewById(R.id. note );

 

        // Get the note!

        mCursor = managedQuery( mUri , PROJECTION , null , null , null );

 

        // If an instance of this activity had previously stopped, we can

        // get the original text it started with.

        if (savedInstanceState != null ) {

            mOriginalContent = savedInstanceState.getString( ORIGINAL_CONTENT );

        }

}

 

上面 mCursor = managedQuery( mUri , PROJECTION , null , null , null ); 其实就是返回符合要求的数据 , 然后就是显示而已。

而其中 managedQuery 函数,又会用到 content-provider ,这里是 notepadprovider, 它创建一个 notepadprovider 实例,然后调用 query 函数,这个函数以 uri 类型的参数为依据返回合适的数据,这个 query 函数就是我们具体 content-provider 要实现的了,如果是用 sqlite, 那就通过 sqlitedatabase 取数据,如果是文件存储的,就通过 ifile 相关接口读取数据,其实在 query 函数中, content://com.google.provider.NotePad/notes/1, 后面的 /notes/1 才用到,对于 sqlite 实现的 content-privide:  notes 对应一个数据库的 table , 1 是这个 table 的 id 项 。

这个在如下可以看到

Contentprovider 的 query 函数里

case NOTE_ID :

        qb.setTables( NOTES_TABLE_NAME );

        qb.setProjectionMap( sNotesProjectionMap );

         qb.appendWhere(Notes. _ID + "=" + uri.getPathSegments().get(1) );

    break ;

上面讲的 Intent 包含的是 uri,action 对象 , 其实还有一种指定方式,这个下一章节再讲。



本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/woshishushangdezhu/archive/2009/07/26/4382560.aspx
  • 大小: 31.2 KB
  • 大小: 21.5 KB
  • 大小: 38.1 KB
分享到:
评论

相关推荐

    带Androidlogger插件的notepad++

    【标题】"带Androidlogger插件的notepad++"是一个专为Android开发者设计的文本编辑器增强版本,它集成了Androidlogger插件,使得在使用Notepad++进行Android代码编辑时,可以方便地查看和分析日志信息。Notepad++...

    android SDK 下 NotePad例子详解

    "NotePad"是Android SDK中一个经典的示例应用,主要用于教授基本的数据库操作、UI设计以及活动(Activity)管理等Android开发核心概念。 首先,NotePad应用展示了如何创建一个简单的笔记管理应用。在这个应用中,...

    Android NotePad便签-IT计算机-毕业设计.zip

    《Android NotePad便签应用详解——为毕业设计提供灵感与实践》 在IT计算机领域,尤其是在移动应用开发中,Android平台占据了重要的地位。对于学生来说,Android应用的毕业设计不仅能够展示编程技能,还能深入理解...

    Android SDK 目录和作用详解

    Android SDK 目录和作用详解 Android SDK 是 Android 开发中最重要的组件之一,它提供了大量的开发工具和资源。了解 Android SDK 的目录结构和作用是非常重要的。本文将详细介绍 Android SDK 中各个目录的名称和...

    BASIC4Android写的NotePad范例

    【标题】"BASIC4Android写的NotePad范例"是一个基于BASIC4Android开发的简单记事本应用程序示例。这个应用展示了如何使用BASIC4Android这种编程语言来创建一个功能基本的记事本,类似于手机或计算机上的文本编辑器。...

    带adb插件的notepad++

    “带adb插件的notepad++”指的是Notepad++文本编辑器,一个流行的开源代码编辑器,已经安装了一个特定的插件,该插件允许用户与Android Debug Bridge (ADB) 进行交互。这个插件使得开发者无需离开Notepad++就能方便...

    notepad++日志分析插件.zip

    《Notepad++日志分析插件详解》 Notepad++是一款广受欢迎的开源文本编辑器,尤其在编程和日志分析领域中应用广泛。本文将详细介绍其配套的日志分析插件,帮助用户更高效地处理和理解日志文件。 一、Notepad++日志...

    notepad++ 插件 AndroidLogger 64位版本 官网下载的32位安装不了

    《关于在Notepad++中安装AndroidLogger 64位插件的详解》 在编程世界里,Notepad++是一款广受欢迎的源代码编辑器,它轻便、免费且支持多种编程语言。然而,在使用过程中,有时我们会遇到一些挑战,比如在64位系统下...

    Notepad记事本工具

    **Notepad记事本工具详解** Notepad是一款基础但功能强大的文本编辑器,尤其在Windows操作系统中被广泛使用。它提供了基本的文本编辑功能,如创建、修改和查看纯文本文件,是程序员和日常用户处理文本文件的首选...

    Android-Notepad-App:作为德克萨斯大学达拉斯分校用户界面课程的一部分创建的 Android 记事本应用程序

    《Android记事本应用开发详解:基于Java的实践探索》 在移动设备的世界里,Android操作系统占据了主导地位,而开发Android应用是许多程序员热衷的领域。本篇将深入探讨一款名为“Android Notepad App”的应用程序,...

    android apk 签名

    ### Android APK签名详解 在Android应用开发过程中,为了确保应用程序的安全性和完整性,对APK进行签名是一项必不可少的操作。本文将详细介绍Android APK签名的过程及其涉及的关键工具和技术。 #### 一、生成数字...

    android 深圳培训资料

    - **步骤详解**: 1. **安装Java JDK**:确保计算机安装了Java JDK,可以从Sun官方网站下载。 2. **安装Eclipse**:直接下载Eclipse并解压缩即可使用。 3. **安装Android SDK**:通过Android官方网站或提供的链接...

    Notepad-android:安卓记事本

    本文将深入探讨如何使用Java来构建一款名为"Notepad-android"的安卓记事本应用。 1. **项目结构与环境搭建** - 首先,我们需要搭建Android开发环境,包括安装Android Studio、配置JDK以及设置Android SDK。Android...

    android记事本源码

    【Android记事本源码详解】 在Android平台上开发一个记事本应用,是学习和实践Android编程的一个经典案例。这个“android记事本源码”提供了实现这一功能的基础框架,让我们一起深入探究其中的关键知识点。 1. **...

    NotepadCodeLab(google官方android软件范例)

    《NotepadCodeLab:Google官方Android软件范例详解》 NotepadCodeLab是Google官方发布的一个Android应用程序示例,主要用于教学目的,帮助开发者理解和学习如何在Android平台上开发文本编辑器应用。这个项目提供了...

    android的apk反编译

    ### Android APK反编译知识点详解 #### 一、概述 Android平台因其开源性与灵活性而备受开发者喜爱。但在实际使用过程中,用户可能会遇到各种各样的问题,比如软件中烦人的广告或者游戏中的某些设定(如经验金币获取...

    Android 跑马灯

    ### Android 跑马灯源码详解 1. **自定义View实现**:开发者通常会继承`View`或者`TextView`,然后重写`onDraw()`方法,利用`canvas.drawText()`绘制文字,并在`onMeasure()`中计算文字长度和视图宽度,根据这两个...

Global site tag (gtag.js) - Google Analytics