Java怎么使用反射和动态代理实现一个View注解绑定库
发表于:2025-01-17 作者:千家信息网编辑
千家信息网最后更新 2025年01月17日,本篇内容介绍了"Java怎么使用反射和动态代理实现一个View注解绑定库"的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅
千家信息网最后更新 2025年01月17日Java怎么使用反射和动态代理实现一个View注解绑定库
本篇内容介绍了"Java怎么使用反射和动态代理实现一个View注解绑定库"的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
使用反射结合动态代理实现一个View注解绑定库,支持View和事件绑定,代码简洁,使用简单,扩展性强。
支持的功能
@ContentView
绑定layout 替代setContentView()@BindView
绑定View 替代findViewById()@OnClick
绑定点击事件 替代setOnClickListener()@OnLongClick
绑定长按事件 替代setOnLongClickListener()
代码
注解类
@Target(ElementType.TYPE)@Retention(RetentionPolicy.RUNTIME)public @interface ContentView { int value();}
@Target(ElementType.FIELD)@Retention(RetentionPolicy.RUNTIME)public @interface BindView { int value();}
@Target(ElementType.ANNOTATION_TYPE)@Retention(RetentionPolicy.RUNTIME)public @interface OnEvent { //订阅方式 String setCommonListener(); //事件源对象 Class> commonListener();}
@Target(ElementType.METHOD)@Retention(RetentionPolicy.RUNTIME)@OnEvent(setCommonListener = "setOnClickListener", commonListener = View.OnClickListener.class)public @interface OnClick { int value();}
@Target(ElementType.METHOD)@Retention(RetentionPolicy.RUNTIME)@OnEvent(setCommonListener = "setOnLongClickListener", commonListener = View.OnLongClickListener.class)public @interface OnLongClick { int value();}
实现类
public class MsInjector { public static void inject(Object object) { injectContentView(object); injectView(object); injectEvent(object); } private static void injectContentView(Object object) { Class> clazz = object.getClass(); //获取到ContentView注解 ContentView contentView = clazz.getAnnotation(ContentView.class); if (contentView == null) { return; } //获取到注解的值,也就是layoutResID int layoutResID = contentView.value(); try { //反射出setContentView方法并调用 Method method = clazz.getMethod("setContentView", int.class); method.invoke(object, layoutResID); } catch (Exception e) { e.printStackTrace(); } } private static void injectView(Object object) { Class> clazz = object.getClass(); //获取到所有字段并遍历 Field[] fields = clazz.getDeclaredFields(); for (Field field : fields) { field.setAccessible(true); //获取字段上的BindView注解 BindView bindView = field.getAnnotation(BindView.class); if (bindView == null) { continue; } //获取到viewId int viewId = bindView.value(); try { //通过反射调用findViewById得到view实例对象 Method method = clazz.getMethod("findViewById", int.class); Object view = method.invoke(object, viewId); //赋值给注解标注的对应字段 field.set(object, view); } catch (Exception e) { e.printStackTrace(); } } } private static void injectEvent(Object object) { Class> clazz = object.getClass(); //获取到当前页年所有方法并遍历 Method[] declaredMethods = clazz.getDeclaredMethods(); for (Method declaredMethod : declaredMethods) { declaredMethod.setAccessible(true); //获取方法上的所有注解并遍历 Annotation[] annotations = declaredMethod.getDeclaredAnnotations(); for (Annotation annotation : annotations) { //获取注解本身 Class extends Annotation> annotationType = annotation.annotationType(); //获取注解上的OnEvent注解 OnEvent onEvent = annotationType.getAnnotation(OnEvent.class); if (onEvent == null) { continue; } //拿到注解中的元素 String setCommonListener = onEvent.setCommonListener(); Class> commonListener = onEvent.commonListener(); try { //由于上边没有明确获取是哪个注解,所以这里需要使用反射获取viewId Method valueMethod = annotationType.getDeclaredMethod("value"); valueMethod.setAccessible(true); int viewId = (int) valueMethod.invoke(annotation); //通过反射findViewById获取到对应的view Method findViewByIdMethod = clazz.getMethod("findViewById", int.class); Object view = findViewByIdMethod.invoke(object, viewId); //通过反射获取到view中对应的setCommonListener方法 Method viewMethod = view.getClass().getMethod(setCommonListener, commonListener); //使用动态代理监听回调 Object proxy = Proxy.newProxyInstance( clazz.getClassLoader(), new Class[]{commonListener}, new InvocationHandler() { @Override public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { //最终执行被标注的方法 return declaredMethod.invoke(object, null); } } ); //调用view的setCommonListener方法 viewMethod.invoke(view, proxy); } catch (Exception e) { e.printStackTrace(); } } } }}
使用
@ContentView(R.layout.activity_main)public class MainActivity extends AppCompatActivity { @BindView(R.id.button1) private Button button1; @BindView(R.id.button2) Button button2; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); MsInjector.inject(this); } @OnClick(R.id.button1) public void clickButton1() { Toast.makeText(this, "click button1", Toast.LENGTH_SHORT).show(); } @OnClick(R.id.button2) public void clickButton2() { Toast.makeText(this, "click button2", Toast.LENGTH_SHORT).show(); } @OnLongClick(R.id.button1) public boolean longClickButton1() { Toast.makeText(this, "long click button1", Toast.LENGTH_SHORT).show(); return false; } @OnLongClick(R.id.button2) public boolean longClickButton2() { Toast.makeText(this, "long click button2", Toast.LENGTH_SHORT).show(); return false; }}
"Java怎么使用反射和动态代理实现一个View注解绑定库"的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注网站,小编将为大家输出更多高质量的实用文章!
注解
反射
方法
动态
代理
事件
字段
代码
内容
对象
更多
知识
支持
实用
简洁
学有所成
接下来
上边
也就是
元素
数据库的安全要保护哪些东西
数据库安全各自的含义是什么
生产安全数据库录入
数据库的安全性及管理
数据库安全策略包含哪些
海淀数据库安全审计系统
建立农村房屋安全信息数据库
易用的数据库客户端支持安全管理
连接数据库失败ssl安全错误
数据库的锁怎样保障安全
数据库只是用几个字段分组
理科可以选网络安全专业吗
个人学习网络安全知识的收获
t130服务器风扇
军队网络安全心得体会
上海艮春软件开发有限公司
收费的软件开发视频教程
绝地求生非安全服务器
安徽通用软件开发厂家价格
桐庐php软件开发工程师
适合新手学习的数据库
管家婆客户端与服务器版本不一致
香港哪个服务器被扫段攻击了
山东农业大学网络安全
每个学校的知网查重数据库一样么
863442-B21刀片服务器
腾讯云服务器怎么创建
数据库系统工程师复习
数据库的默认值当前时间
淘宝项目怎么搭配数据库
保障数据库安全对经济的意义
西城区品牌软件开发售后保障
网络安全保密责任书
服务器柜价格
铁路网络安全讲话
关于网络安全知识的读后感五百字
浪潮服务器管理密码重置
西安安卓应用软件开发怎么收费
自己建网游服务器违法吗
内部网络数据库安全管理