zoukankan      html  css  js  c++  java
  • AndroidAnnotations 通过注释来开发应用

    AndroidAnnotations是一个第三方框架,通过注释来开发应用。使用AndroidAnnotations能大大减少代码量。

    [java]
    package com.example.androidannotations; 
    import android.app.Activity; 
    import android.widget.TextView; 
      
    import com.googlecode.androidannotations.annotations.AfterViews; 
    import com.googlecode.androidannotations.annotations.EActivity; 
    import com.googlecode.androidannotations.annotations.ViewById; 
      
    //Eactivity注释可以设置Layout,相当于setConentView方法  
    @EActivity(R.layout.activity_main) 
    public class MainActivity extends Activity { 
        //ViewById注释功能与findViewById相同,如果声明的变量名就是id,可以省去参数,否则应加上id,如ViewById(R.id.tv)  
        @ViewById 
        TextView tv; 
        //AfterViews注释定义的方法会在OnCreate方法的setContentView后执行  
        @AfterViews 
        void init() 
        { 
            tv.setText("asfsdf"); 
        } 

    package com.example.androidannotations;
    import android.app.Activity;
    import android.widget.TextView;
     
    import com.googlecode.androidannotations.annotations.AfterViews;
    import com.googlecode.androidannotations.annotations.EActivity;
    import com.googlecode.androidannotations.annotations.ViewById;
     
    //Eactivity注释可以设置Layout,相当于setConentView方法
    @EActivity(R.layout.activity_main)
    public class MainActivity extends Activity {
     //ViewById注释功能与findViewById相同,如果声明的变量名就是id,可以省去参数,否则应加上id,如ViewById(R.id.tv)
     @ViewById
     TextView tv;
     //AfterViews注释定义的方法会在OnCreate方法的setContentView后执行
     @AfterViews
     void init()
     {
      tv.setText("asfsdf");
     }
    }
    一些常用注释的使用方法:
    @AfterInject 定义的方法在类的构造方法执行后执行
    @AfterTextChange定义的方法在TextView及其子类的Text属性改变后执行
    @AfterViews 定义的方法在setContentView后执行
    @Background 定义的方法在后台线程执行
    @BeforeTextChange 定义的方法在TextView及其子类的Text属性改变前执行
    @Click 定义点击监听器
    @EActivity 在Activity中启用Annotations
    @EProvider 在 ContentProvider中启用Annotations
    @EReceive 在BroadcastReceiver中启用Annotations
    @EService 在Service中启用Annotations
    @EView 在自定义的View的子类中启用Annotations
    @Fullscreen 全屏
    @NoTitle 无标题栏

  • 相关阅读:
    CCDictionary 用调试器查看问题
    博客 小记
    cocos2d-x 调试问题
    string知识
    静动态库
    fedora 20安装vim Transaction check error
    PyQt中ui编译成窗体.py,中文乱码
    centos编译安装vim7.4
    linux c驴杂记
    c++指针 c指针 改变值
  • 原文地址:https://www.cnblogs.com/talon/p/4485730.html
Copyright © 2011-2022 走看看