标签:声明 覆盖 http hand 内容 bottom 数据类型 getc mono
在上一篇文章Android 最火的高速开发框架XUtils中简介了xUtils的基本用法,这篇文章说一下xUtils里面的注解原理。
先来看一下xUtils里面demo的代码:
@ViewInject(R.id.tabhost) private FragmentTabHost mTabHost; @ViewInject(R.id.big_img) private ImageView bigImage;
注解(Annotation) 为我们在代码中加入信息提供了一种形式化的方法。是我们能够在稍后某个时刻方便地使用这些数据(通过 解析注解 来使用这些数据),常见的作用有下面几种:
这是最常见的,也是java 最早提供的注解。经常使用的有@see @param @return 等
作用就是降低配置。如今的框架基本都使用了这样的配置来降低配置文件的数量。也是
包 java.lang.annotation 中包括全部定义自己定义注解所需用到的原注解和接口。如接口java.lang.annotation.Annotation 是全部注解继承的接口,而且是自己主动继承,不须要定义时指定,类似于全部类都自己主动继承Object。
Java注解是附加在代码中的一些元信息,用于一些工具在编译、执行时进行解析和使用,起到说明、配置的功能。注解不会也不能影响代码的实际逻辑。只起到辅助性的作用。
包括在 java.lang.annotation 包中。
Annotation类型里面的參数该怎么设定:
第一,仅仅能用public或默认(default)这两个訪问权修饰.比如,String value();这里把方法设为defaul默认类型.
第二,參数成员仅仅能用基本类型byte,short,char,int,long,float,double,boolean八种基本数据类型和 String,Enum,Class,annotations等数据类型,以及这一些类型的数组.比如,String value();这里的參数成员就为String.
第三,假设仅仅有一个參数成员,最好把參数名称设为"value",后加小括号.
1、元注解
元注解是指注解的注解。
包含 @Retention @Target @Document @Inherited四种。
1.1、@Retention: 定义注解的保留策略
@Target(ElementType.TYPE) //接口、类、枚举、注解
@Retention(RetentionPolicy.RUNTIME)定义的这个注解是注解会在class字节码文件里存在,在执行时能够通过反射获取到。
@Target({ElementType.TYPE,ElementType.METHOD})因此这个注解能够是类注解。也能够是方法的注解
这样一个注解就自己定义好了,当然注解里面的成员能够为主要的数据类型。也能够为数据,Object等等
大概了解了一下Java注解机制,以下就说一说xUtils里面用到的注解,以及思维流程:
package com.lidroid.xutils.view.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) public @interface ContentView { int value(); }以上是ContentView的注解,一些声明、參数。
private static void injectObject(Object handler, ViewFinder finder) { Class<?> handlerType = handler.getClass(); // inject ContentView ContentView contentView = handlerType.getAnnotation(ContentView.class); if (contentView != null) { try { Method setContentViewMethod = handlerType.getMethod("setContentView", int.class); setContentViewMethod.invoke(handler, contentView.value()); } catch (Throwable e) { LogUtils.e(e.getMessage(), e); } }}
setContentViewMethod.invoke(handler, contentView.value());这句话也能够这么理解。那就是handler有setContentViewMethod这种方法。setContentViewMethod这种方法的參数是contentView.value()。
这样就明确了为什么这样
@ContentView(R.layout.main)
public class MyActivity extends FragmentActivity 就能够实现载入布局的操作了,其它的xUtils的注解操作也是类似的。
以下是一个简单流程图:
如有问题请留言。转载注明出处。http://blog.csdn.net/rain_butterfly/article/details/37931031
标签:声明 覆盖 http hand 内容 bottom 数据类型 getc mono
原文地址:http://www.cnblogs.com/wzjhoutai/p/6877712.html