当前位置: 代码迷 >> 综合 >> AndroidAnnotations——Annotation recipes 注解使用方法
  详细解决方案

AndroidAnnotations——Annotation recipes 注解使用方法

热度:31   发布时间:2023-12-12 00:03:17.0
AndroidAnnotation

目录(?)[+]

  1. Annotation recipes 注解使用方法
    1. Enhanced components 优化的组件
    2. Injecting stuff 注入
    3. Clear event handling 让事件处理更简洁
    4. Simple threading 更简单的线程操作
    5. rd party framework integration 第三方框架集合
    6. Other goodies 其他好东西
  2. Build and IDE Recipes 在IDE中搭建环境

Annotation recipes 注解使用方法

Enhanced components 优化的组件

  • How to enhance Activities 博客内跳转
  • How to enhance Fragments 博客内跳转
  • How to enhance custom classes 博客内跳转
  • How to enhance custom views 博客内跳转
  • How to enhance your Application class 博客内跳转
  • How to enhance Services 博客内跳转
  • How to enhance BroadcastReceivers 博客内跳转
  • How to enhance ContentProviders 博客内跳转

Injecting stuff 注入

  • How to inject Views 博客内跳转
  • How to inject your project resources 博客内跳转
  • How to inject intent extras 博客内跳转
  • How to inject Android System Services 博客内跳转
  • How to inject Html text in TextViews博客内跳转
  • How to reinject NonConfiguration instances 博客内跳转
  • Simple HTTPS with HttpClient博客内跳转
  • How to inject Fragment arguments 博客内跳转

Clear event handling 让事件处理更简洁

  • Listening to click, touch & long click events 博客内跳转
  • Listening to AdapterView events博客内跳转
  • Listening to SeekBar events 博客内跳转
  • Listening to text changes 博客内跳转
  • How to simplify handling of Options Menu 博客内跳转

Simple threading 更简单的线程操作

  • How to stop worrying about threads 博客内跳转
  • Fork / Join for the poor Android dev博客内跳转
  • Publish progress made easy博客内跳转
  • Background tasks and config changes (such as screen rotations)博客内跳转

3rd party framework integration 第三方框架集合

  • How to combine AndroidAnnotations with RoboGuice
  • How to get RoboGuice @Inject to work in a @EBean
  • How to combine AndroidAnnotations with GreenDroid
  • How to combine AndroidAnnotations with ActionBarSherlock
  • How to use AndroidAnnotations in Library Projects

Other goodies 其他好东西

  • Adapters and lists, the AA way博客内跳转
  • How to add callbacks to execute code after injection
  • How to save your activity instance state
  • How to use the simple Rest API
  • Authenticated Rest Client
  • How to trace the execution of your code
  • Easily setting your activity to no title / fullscreen
  • How to unit test your application
  • How to use typesafe SharedPreferences 博客内跳转
  • How to handle SQLite Transactions
  • How to handle Android backward compatibility
  • How to handle Activity results 博客内跳转
  • How to make HierarchyViewer work on any device

Build and IDE Recipes 在IDE中搭建环境

  • How to configure Eclipse for AndroidAnnotations
  • How to configure IntelliJ IDEA for AndroidAnnotations
  • How to configure Netbeans for AndroidAnnotations
  • How to build an AndroidAnnotations project with Maven and Eclipse
  • How to build an AndroidAnnotations project with Ant
  • How to build an AndroidAnnotations project with Gradle
  • How to configure Proguard for AndroidAnnotations
  相关解决方案