中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在Android中使用反射注解與動態代理

發布時間:2021-03-29 15:36:28 來源:億速云 閱讀:151 作者:Leah 欄目:移動開發

今天就跟大家聊聊有關怎么在Android中使用反射注解與動態代理,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

反射

主要是指程序可以訪問,檢測和修改它本身狀態或行為的一種能力,并能根據自身行為的狀態和結果,調整或修改應用所描述行為的狀態和相關的語義。

反射是java中一種強大的工具,能夠使我們很方便的創建靈活的代碼,這些代碼可以再運行時裝配,無需在組件之間進行源代碼鏈接。但是反射使用不當會成本很高

比較常用的方法

  1. getDeclaredFields(): 可以獲得class的成員變量

  2. getDeclaredMethods() :可以獲得class的成員方法

  3. getDeclaredConstructors():可以獲得class的構造函數

注解

Java代碼從編寫到運行會經過三個大的時期:代碼編寫,編譯,讀取到JVM運行,針對三個時期分別有三類注解:

public enum RetentionPolicy {
/**
 * Annotations are to be discarded by the compiler.
 */
 SOURCE,

/**
 * Annotations are to be recorded in the class file by the compiler
 * but need not be retained by the VM at run time. This is the default
 * behavior.
 */
 CLASS,

/**
 * Annotations are to be recorded in the class file by the compiler and
 * retained by the VM at run time, so they may be read reflectively.
 *
 * @see java.lang.reflect.AnnotatedElement
 */
 RUNTIME
 }
  1. SOURCE:就是針對代碼編寫階段,比如@Override注解

  2. CLASS:就是針對編譯階段,這個階段可以讓編譯器幫助我們去動態生成代碼

  3. RUNTIME:就是針對讀取到JVM運行階段,這個可以結合反射使用,我們今天使用的注解也都是在這個階段

使用注解還需要指出注解使用的對象

public enum ElementType {
/** Class, interface (including annotation type), or enum declaration */
TYPE,

/** Field declaration (includes enum constants) */
FIELD,

/** Method declaration */
METHOD,

/** Formal parameter declaration */
PARAMETER,

/** Constructor declaration */
CONSTRUCTOR,

/** Local variable declaration */
LOCAL_VARIABLE,

/** Annotation type declaration */
ANNOTATION_TYPE,

/** Package declaration */
PACKAGE,

/**
 * Type parameter declaration
 *
 * @since 1.8
 * @hide 1.8
 */
TYPE_PARAMETER,

/**
 * Use of a type
 *
 * @since 1.8
 * @hide 1.8
 */
TYPE_USE
}

比較常用的方法

  1. TYPE 作用對象類/接口/枚舉

  2. FIELD 成員變量

  3. METHOD 成員方法

  4. PARAMETER 方法參數

  5. ANNOTATION_TYPE 注解的注解

下面看下自己定義的三個注解

@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
 public @interface InjectView {
 int value();
}

InjectView用于注入view,其實就是用來代替findViewById方法

Target指定了InjectView注解作用對象是成員變量

Retention指定了注解有效期直到運行時時期

value就是用來指定id,也就是findViewById的參數

@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@EventType(listenerType = View.OnClickListener.class, listenerSetter = "setOnClickListener", methodName 
 = "onClick")
 public @interface onClick {
 int[] value();
}

onClick注解用于注入點擊事件,其實用來代替setOnClickListener方法

Target指定了onClick注解作用對象是成員方法

Retention指定了onClick注解有效期直到運行時時期

value就是用來指定id,也就是findViewById的參數

@Target(ElementType.ANNOTATION_TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface EventType {
Class listenerType();
String listenerSetter();
String methodName();
}

在onClikc里面有一個EventType定義

Target指定了EventType注解作用對象是注解,也就是注解的注解

Retention指定了EventType注解有效期直到運行時時期

listenerType用來指定點擊監聽類型,比如OnClickListener

listenerSetter用來指定設置點擊事件方法,比如setOnClickListener

methodName用來指定點擊事件發生后會回調的方法,比如onClick

綜合使用

接下來我用一個例子來演示如何使用反射、注解、和代理的綜合使用

@InjectView(R.id.bind_view_btn)
 Button mBindView;

在onCreate中調用注入Utils.injectView(this);

我們看下Utils.injectView這個方法的內部實現

public static void injectView(Activity activity) {
 if (null == activity) return;

 Class<? extends Activity> activityClass = activity.getClass();
 Field[] declaredFields = activityClass.getDeclaredFields();
 for (Field field : declaredFields) {
  if (field.isAnnotationPresent(InjectView.class)) {
   //解析InjectView 獲取button id
   InjectView annotation = field.getAnnotation(InjectView.class);
   int value = annotation.value();

   try {
    //找到findViewById方法
    Method findViewByIdMethod = activityClass.getMethod("findViewById", int.class);
    findViewByIdMethod.setAccessible(true);
    findViewByIdMethod.invoke(activity, value);

   } catch (NoSuchMethodException e) {
    e.printStackTrace();
   } catch (InvocationTargetException e) {
    e.printStackTrace();
   } catch (IllegalAccessException e) {
    e.printStackTrace();
   }
  }
 }

}

1.方法內部首先拿到activity的所有成員變量,
2.找到有InjectView注解的成員變量,然后可以拿到button的id
3.通過反射activityClass.getMethod可以拿到findViewById方法
4.調用findViewById,參數就是id。

可以看出來最終都是通過findViewById進行控件的實例化

接下來看一下如何將onClick方法的調用映射到activity 中的invokeClick()方法

首先在onCreate中調用注入 Utils.injectEvent(this);

@onClick({R.id.btn_bind_click, R.id.btn_bind_view})
public void invokeClick(View view) {
 switch (view.getId()) {
  case R.id.btn_bind_click:
   Log.i(Utils.TAG, "bind_click_btn Click");
   Toast.makeText(MainActivity.this,"button onClick",Toast.LENGTH_SHORT).show();
   break;
  case R.id.btn_bind_view:
   Log.i(Utils.TAG, "bind_view_btn Click");
   Toast.makeText(MainActivity.this,"button binded",Toast.LENGTH_SHORT).show();
   break;
 }
}

反射+注解+動態代理就在injectEvent方法中,我們現在去揭開女王的神秘面紗

public static void injectEvent(Activity activity) {
 if (null == activity) {
  return;
 }
 Class<? extends Activity> activityClass = activity.getClass();
 Method[] declaredMethods = activityClass.getDeclaredMethods();

 for (Method method : declaredMethods) {
  if (method.isAnnotationPresent(onClick.class)) {
   Log.i(Utils.TAG, method.getName());
   onClick annotation = method.getAnnotation(onClick.class);
   //get button id
   int[] value = annotation.value();
   //get EventType
   EventType eventType = annotation.annotationType().getAnnotation(EventType.class);
   Class listenerType = eventType.listenerType();
   String listenerSetter = eventType.listenerSetter();
   String methodName = eventType.methodName();

   //創建InvocationHandler和動態代理(代理要實現listenerType,這個例子就是處理onClick點擊事件)
   ProxyHandler proxyHandler = new ProxyHandler(activity);
   Object listener = Proxy.newProxyInstance(listenerType.getClassLoader(), new Class[]{listenerType}, proxyHandler);

   proxyHandler.mapMethod(methodName, method);
   try {
    for (int id : value) {
     //找到Button
     Method findViewByIdMethod = activityClass.getMethod("findViewById", int.class);
     findViewByIdMethod.setAccessible(true);
     View btn = (View) findViewByIdMethod.invoke(activity, id);
     //根據listenerSetter方法名和listenerType方法參數找到method
     Method listenerSetMethod = btn.getClass().getMethod(listenerSetter, listenerType);
     listenerSetMethod.setAccessible(true);
     listenerSetMethod.invoke(btn, listener);
    }

   } catch (NoSuchMethodException e) {
    e.printStackTrace();
   } catch (InvocationTargetException e) {
    e.printStackTrace();
   } catch (IllegalAccessException e) {
    e.printStackTrace();
   }
  }
 }
}

1.首先就是獲取activity的所有成員方法getDeclaredMethods
2.找到有onClick注解的方法,拿到value就是注解點擊事件button的id
3.獲取onClick注解的注解EventType的參數,從中可以拿到設定點擊事件方法setOnClickListener + 點擊事件的監聽接口OnClickListener+點擊事件的回調方法onClick
4.在點擊事件發生的時候Android系統會觸發onClick事件,我們需要將事件的處理回調到注解的方法invokeClick,也就是代理的思想
5.通過動態代理Proxy.newProxyInstance實例化一個實現OnClickListener接口的代理,代理會在onClick事件發生的時候回調InvocationHandler進行處理
6.RealSubject就是activity,因此我們傳入ProxyHandler實例化一個InvocationHandler,用來將onClick事件映射到activity中我們注解的方法InvokeBtnClick
7.通過反射實例化Button,findViewByIdMethod.invoke
8.通過Button.setOnClickListener(OnClickListener)進行設定點擊事件監聽。

接著可能會思考為什么Proxy.newProxyInstance動態生成的代理能傳遞給Button.setOnClickListener?

因為Proxy傳入的參數中listenerType就是OnClickListener,所以Java為我們生成的代理會實現這個接口,在onClick方法調用的時候會回調ProxyHandler中的invoke方法,從而回調到activity中注解的方法。

ProxyHandler中主要是Invoke方法,在方法調用的時候將method方法名和參數都打印出來。

@Override
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
 Log.i(Utils.TAG, "method name = " + method.getName() + " and args = " + Arrays.toString(args));
 Object handler = mHandlerRef.get();
 if (null == handler) return null;
 String name = method.getName();
 //將onClick方法的調用映射到activity 中的invokeClick()方法
 Method realMethod = mMethodHashMap.get(name);
 if (null != realMethod){
  return realMethod.invoke(handler, args);
 }
 return null;
}

點擊運行結果

怎么在Android中使用反射注解與動態代理

看完上述內容,你們對怎么在Android中使用反射注解與動態代理有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

台北市| 环江| 崇义县| 南岸区| 兴隆县| 云南省| 古浪县| 开鲁县| 中宁县| 新乡县| 富民县| 壶关县| 三亚市| 巩义市| 都昌县| 江孜县| 梓潼县| 靖西县| 邵阳县| 平和县| 泰来县| 峨眉山市| 册亨县| 宁海县| 化隆| 新兴县| 丹巴县| 庄河市| 贞丰县| 东台市| 武安市| 新宁县| 张掖市| 邢台市| 文登市| 盐边县| 新泰市| 罗田县| 准格尔旗| 徐水县| 静海县|