Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> AndroidAnnotations

AndroidAnnotations

編輯:關於Android編程

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 無標題欄

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved