天天看點

Android 最火的快速開發架構XUtils 關于作者

最近搜了一些架構供初學者學習,比較了一下XUtils是目前git上比較活躍 功能比較完善的一個架構,是基于afinal開發的,比afinal穩定性提高了不少,下面是介紹:

鑒于大家的熱情,我又寫了一篇Android 最火架構XUtils之注解機制詳解<-點選檢視

xUtils簡介

  • xUtils 包含了很多實用的android工具。
  • xUtils 最初源于Afinal架構,進行了大量重構,使得xUtils支援大檔案上傳,更全面的http請求協定支援(10種謂詞),擁有更加靈活的ORM,更多的事件注解支援且不受混淆影響...
  • xUitls最低相容android 2.2 (api level 8)
  • 目前xUtils主要有四大子產品:
    • DbUtils子產品:
      • android中的orm架構,一行代碼就可以進行增删改查;
      • 支援事務,預設關閉;
      • 可通過注解自定義表名,列名,外鍵,唯一性限制,NOT NULL限制,CHECK限制等(需要混淆的時候請注解表名和列名);
      • 支援綁定外鍵,儲存實體時外鍵關聯實體自動儲存或更新;
      • 自動加載外鍵關聯實體,支援延時加載;
      • 支援鍊式表達查詢,更直覺的查詢語義,參考下面的介紹或sample中的例子。
    • ViewUtils子產品:
      • android中的ioc架構,完全注解方式就可以進行UI,資源和事件綁定;
      • 新的事件綁定方式,使用混淆工具混淆後仍可正常工作;
      • 目前支援常用的20種事件綁定,參見ViewCommonEventListener類和包com.lidroid.xutils.view.annotation.event。
    • HttpUtils子產品:
      • 支援同步,異步方式的請求;
      • 支援大檔案上傳,上傳大檔案不會oom;
      • 支援GET,POST,PUT,MOVE,COPY,DELETE,HEAD,OPTIONS,TRACE,CONNECT請求;
      • 下載下傳支援301/302重定向,支援設定是否根據Content-Disposition重命名下載下傳的檔案;
      • 傳回文本内容的請求(預設隻啟用了GET請求)支援緩存,可設定預設過期時間和針對目前請求的過期時間。
    • BitmapUtils子產品:
      • 加載bitmap的時候無需考慮bitmap加載過程中出現的oom和android容器快速滑動時候出現的圖檔錯位等現象;
      • 支援加載網絡圖檔和本地圖檔;
      • 記憶體管理使用lru算法,更好的管理bitmap記憶體;
      • 可配置線程加載線程數量,緩存大小,緩存路徑,加載顯示動畫等...

    使用xUtils快速開發架構需要有以下權限:

    <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />       

    混淆時注意事項:

    • 添加Android預設混淆配置${sdk.dir}/tools/proguard/proguard-android.txt
    • 不要混淆xUtils中的注解類型,添加混淆配置:-keep class * extends java.lang.annotation.Annotation { *; }
    • 對使用DbUtils子產品持久化的實體類不要混淆,或者注解所有表和列名稱@Table(name="xxx"),@Id(column="xxx"),@Column(column="xxx"),@Foreign(column="xxx",foreign="xxx");

    DbUtils使用方法:

    DbUtils db = DbUtils.create(this);
    User user = new User(); //這裡需要注意的是User對象必須有id屬性,或者有通過@ID注解的屬性
    user.setEmail("[email protected]");
    user.setName("wyouflf");
    db.save(user); // 使用saveBindingId儲存實體時會為實體的id指派
    
    ...
    // 查找
    Parent entity = db.findById(Parent.class, parent.getId());
    List<Parent> list = db.findAll(Parent.class);//通過類型查找
    
    Parent Parent = db.findFirst(Selector.from(Parent.class).where("name","=","test"));
    
    // IS NULL
    Parent Parent = db.findFirst(Selector.from(Parent.class).where("name","=", null));
    // IS NOT NULL
    Parent Parent = db.findFirst(Selector.from(Parent.class).where("name","!=", null));
    
    // WHERE id<54 AND (age>20 OR age<30) ORDER BY id LIMIT pageSize OFFSET pageOffset
    List<Parent> list = db.findAll(Selector.from(Parent.class)
                                       .where("id" ,"<", 54)
                                       .and(WhereBuilder.b("age", ">", 20).or("age", " < ", 30))
                                       .orderBy("id")
                                       .limit(pageSize)
                                       .offset(pageSize * pageIndex));
    
    // op為"in"時,最後一個參數必須是數組或Iterable的實作類(例如List等)
    Parent test = db.findFirst(Selector.from(Parent.class).where("id", "in", new int[]{1, 2, 3}));
    // op為"between"時,最後一個參數必須是數組或Iterable的實作類(例如List等)
    Parent test = db.findFirst(Selector.from(Parent.class).where("id", "between", new String[]{"1", "5"}));
    
    DbModel dbModel = db.findDbModelAll(Selector.from(Parent.class).select("name"));//select("name")隻取出name列
    List<DbModel> dbModels = db.findDbModelAll(Selector.from(Parent.class).groupBy("name").select("name", "count(name)"));
    ...
    
    List<DbModel> dbModels = db.findDbModelAll(sql); // 自定義sql查詢
    db.execNonQuery(sql) // 執行自定義sql
    ...      

    ViewUtils使用方法

    • 完全注解方式就可以進行UI綁定和事件綁定。
    • 無需findViewById和setClickListener等。
    // xUtils的view注解要求必須提供id,以使代碼混淆不受影響。
    @ViewInject(R.id.textView)
    TextView textView;
    
    //@ViewInject(vale=R.id.textView, parentId=R.id.parentView)
    //TextView textView;
    
    @ResInject(id = R.string.label, type = ResType.String)
    private String label;
    
    // 取消了之前使用方法名綁定事件的方式,使用id綁定不受混淆影響
    // 支援綁定多個id @OnClick({R.id.id1, R.id.id2, R.id.id3})
    // or @OnClick(value={R.id.id1, R.id.id2, R.id.id3}, parentId={R.id.pid1, R.id.pid2, R.id.pid3})
    // 更多事件支援參見ViewCommonEventListener類和包com.lidroid.xutils.view.annotation.event。
    @OnClick(R.id.test_button)
    public void testButtonClick(View v) { // 方法簽名必須和接口中的要求一緻
        ...
    }
    ...
    //在Activity中注入:
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        ViewUtils.inject(this); //注入view和事件
        ...
        textView.setText("some text...");
        ...
    }
    //在Fragment中注入:
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.bitmap_fragment, container, false); // 加載fragment布局
        ViewUtils.inject(this, view); //注入view和事件
        ...
    }
    //在PreferenceFragment中注入:
    public void onActivityCreated(Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
        ViewUtils.inject(this, getPreferenceScreen()); //注入view和事件
        ...
    }
    // 其他重載
    // inject(View view);
    // inject(Activity activity)
    // inject(PreferenceActivity preferenceActivity)
    // inject(Object handler, View view)
    // inject(Object handler, Activity activity)
    // inject(Object handler, PreferenceGroup preferenceGroup)
    // inject(Object handler, PreferenceActivity preferenceActivity)      

    HttpUtils使用方法:

    普通get方法

    HttpUtils http = new HttpUtils();
    http.send(HttpRequest.HttpMethod.GET,
        "http://www.lidroid.com",
        new RequestCallBack<String>(){
            @Override
            public void onLoading(long total, long current, boolean isUploading) {
                testTextView.setText(current + "/" + total);
            }
    
            @Override
            public void onSuccess(ResponseInfo<String> responseInfo) {
                textView.setText(responseInfo.result);
            }
    
            @Override
            public void onStart() {
            }
    
            @Override
            public void onFailure(HttpException error, String msg) {
            }
    });      

    使用HttpUtils上傳檔案 或者 送出資料 到伺服器(post方法)

    RequestParams params = new RequestParams();
    params.addHeader("name", "value");
    params.addQueryStringParameter("name", "value");
    
    // 隻包含字元串參數時預設使用BodyParamsEntity,
    // 類似于UrlEncodedFormEntity("application/x-www-form-urlencoded")。
    params.addBodyParameter("name", "value");
    
    // 加入檔案參數後預設使用MultipartEntity("multipart/form-data"),
    // 如需"multipart/related",xUtils中提供的MultipartEntity支援設定subType為"related"。
    // 使用params.setBodyEntity(httpEntity)可設定更多類型的HttpEntity(如:
    // MultipartEntity,BodyParamsEntity,FileUploadEntity,InputStreamUploadEntity,StringEntity)。
    // 例如發送json參數:params.setBodyEntity(new StringEntity(jsonStr,charset));
    params.addBodyParameter("file", new File("path"));
    ...
    
    HttpUtils http = new HttpUtils();
    http.send(HttpRequest.HttpMethod.POST,
        "uploadUrl....",
        params,
        new RequestCallBack<String>() {
    
            @Override
            public void onStart() {
                testTextView.setText("conn...");
            }
    
            @Override
            public void onLoading(long total, long current, boolean isUploading) {
                if (isUploading) {
                    testTextView.setText("upload: " + current + "/" + total);
                } else {
                    testTextView.setText("reply: " + current + "/" + total);
                }
            }
    
            @Override
            public void onSuccess(ResponseInfo<String> responseInfo) {
                testTextView.setText("reply: " + responseInfo.result);
            }
    
            @Override
            public void onFailure(HttpException error, String msg) {
                testTextView.setText(error.getExceptionCode() + ":" + msg);
            }
    });      

    使用HttpUtils下載下傳檔案:

    • 支援斷點續傳,随時停止下載下傳任務,開始任務
    HttpUtils http = new HttpUtils();
    HttpHandler handler = http.download("http://apache.dataguru.cn/httpcomponents/httpclient/source/httpcomponents-client-4.2.5-src.zip",
        "/sdcard/httpcomponents-client-4.2.5-src.zip",
        true, // 如果目标檔案存在,接着未完成的部分繼續下載下傳。伺服器不支援RANGE時将從新下載下傳。
        true, // 如果從請求傳回資訊中擷取到檔案名,下載下傳完成後自動重命名。
        new RequestCallBack<File>() {
    
            @Override
            public void onStart() {
                testTextView.setText("conn...");
            }
    
            @Override
            public void onLoading(long total, long current, boolean isUploading) {
                testTextView.setText(current + "/" + total);
            }
    
            @Override
            public void onSuccess(ResponseInfo<File> responseInfo) {
                testTextView.setText("downloaded:" + responseInfo.result.getPath());
            }
    
    
            @Override
            public void onFailure(HttpException error, String msg) {
                testTextView.setText(msg);
            }
    });
    
    ...
    //調用cancel()方法停止下載下傳
    handler.cancel();      

    BitmapUtils 使用方法

    BitmapUtils bitmapUtils = new BitmapUtils(this);
    
    // 加載網絡圖檔
    bitmapUtils.display(testImageView, "http://bbs.lidroid.com/static/image/common/logo.png");
    
    // 加載本地圖檔(路徑以/開頭, 絕對路徑)
    bitmapUtils.display(testImageView, "/sdcard/test.jpg");
    
    // 加載assets中的圖檔(路徑以assets開頭)
    bitmapUtils.display(testImageView, "assets/img/wallpaper.jpg");
    
    // 使用ListView等容器展示圖檔時可通過PauseOnScrollListener控制滑動和快速滑動過程中時候暫停加載圖檔
    listView.setOnScrollListener(new PauseOnScrollListener(bitmapUtils, false, true));
    listView.setOnScrollListener(new PauseOnScrollListener(bitmapUtils, false, true, customListener));      

    輸出日志 LogUtils

    // 自動添加TAG,格式: className.methodName(L:lineNumber)
    // 可設定全局的LogUtils.allowD = false,LogUtils.allowI = false...,控制是否輸出log。
    // 自定義log輸出LogUtils.customLogger = new xxxLogger();
    LogUtils.d("wyouflf");      

    關于作者

    • Email: [email protected], [email protected]
    近來有一些其他網站盜用本部落格内容,希望尊重作者。如有問題請留言,轉載注明出處。http://blog.csdn.net/rain_butterfly/article/details/37812371 參考:http://www.oschina.net/p/xutils
  • 項目git位址https://github.com/wyouflf/xUtils      
  • 執行個體,BitmapUtils:      
  • [java] 
          view plain
          copy
          
            
    Android 最火的快速開發架構XUtils 關于作者
    Android 最火的快速開發架構XUtils 關于作者
    1. public class xUtilsImageLoader {//架構裡面設定了緩存和異步操作,不用單獨設定線程池和緩存機制(也可以自定義緩存路徑)  
    2.     private BitmapUtils bitmapUtils;  
    3.     private Context mContext;  
    4.     public xUtilsImageLoader(Context context) {  
    5.         // TODO Auto-generated constructor stub  
    6.         this.mContext = context;  
    7.         bitmapUtils = new BitmapUtils(mContext);  
    8.         bitmapUtils.configDefaultLoadingImage(R.drawable.logo_new);//預設背景圖檔  
    9.         bitmapUtils.configDefaultLoadFailedImage(R.drawable.logo_new);//加載失敗圖檔  
    10.         bitmapUtils.configDefaultBitmapConfig(Bitmap.Config.RGB_565);//設定圖檔壓縮類型  
    11.     }  
    12.     /** 
    13.      *  
    14.      * @author sunglasses 
    15.      * @category 圖檔回調函數 
    16.      */  
    17.     public class CustomBitmapLoadCallBack extends  
    18.             DefaultBitmapLoadCallBack<ImageView> {  
    19.         @Override  
    20.         public void onLoading(ImageView container, String uri,  
    21.                 BitmapDisplayConfig config, long total, long current) {  
    22.         }  
    23.         @Override  
    24.         public void onLoadCompleted(ImageView container, String uri,  
    25.                 Bitmap bitmap, BitmapDisplayConfig config, BitmapLoadFrom from) {  
    26.             // super.onLoadCompleted(container, uri, bitmap, config, from);  
    27.             fadeInDisplay(container, bitmap);  
    28.         }  
    29.         @Override  
    30.         public void onLoadFailed(ImageView container, String uri,  
    31.                 Drawable drawable) {  
    32.             // TODO Auto-generated method stub  
    33.         }  
    34.     }  
    35.     private static final ColorDrawable TRANSPARENT_DRAWABLE = new ColorDrawable(  
    36.             android.R.color.transparent);  
    37.     /** 
    38.      * @author sunglasses 
    39.      * @category 圖檔加載效果 
    40.      * @param imageView 
    41.      * @param bitmap 
    42.      */  
    43.     private void fadeInDisplay(ImageView imageView, Bitmap bitmap) {//目前流行的漸變效果  
    44.         final TransitionDrawable transitionDrawable = new TransitionDrawable(  
    45.                 new Drawable[] { TRANSPARENT_DRAWABLE,  
    46.                         new BitmapDrawable(imageView.getResources(), bitmap) });  
    47.         imageView.setImageDrawable(transitionDrawable);  
    48.         transitionDrawable.startTransition(500);  
    49.     }  
    50.     public void display(ImageView container,String url){//外部接口函數  
    51.         bitmapUtils.display(container, url,new CustomBitmapLoadCallBack());  
    52.     }  
    53. }  
  • 執行個體:HttpGet:      
  • [java] 
          view plain
          copy
          
            
    Android 最火的快速開發架構XUtils 關于作者
    Android 最火的快速開發架構XUtils 關于作者
    1. public class xUtilsGet {//自動實作異步處理,自己不用處理  
    2.     public void getJson(String url,RequestParams params,final IOAuthCallBack iOAuthCallBack){  
    3.         HttpUtils http = new HttpUtils();  
    4.         http.configCurrentHttpCacheExpiry(1000 * 10);//設定逾時時間  
    5.         http.send(HttpMethod.GET, url, params, new RequestCallBack<String>() {//接口回調  
    6.             @Override  
    7.             public void onFailure(HttpException arg0, String arg1) {  
    8.                 // TODO Auto-generated method stub  
    9.             }  
    10.             @Override  
    11.             public void onSuccess(ResponseInfo<String> info) {  
    12.                 // TODO Auto-generated method stub  
    13.                 iOAuthCallBack.getIOAuthCallBack(info.result);//利用接口回調資料傳輸  
    14.             }  
    15.         });  
    16.     }  
    17.     public void getCataJson(int cityId,IOAuthCallBack iOAuthCallBack) {//外部接口函數  
    18.         String url = "http://xxxxxxxxxx";  
    19.         RequestParams params = new RequestParams();  
    20.         params.addQueryStringParameter("currentCityId", cityId+"");  
    21.         getJson(url,params,iOAuthCallBack);  
    22.     }  
    23. }  
  • 執行個體:HttpPost(和HttpGet類似):      
  • [java] 
          view plain
          copy
          
            
    Android 最火的快速開發架構XUtils 關于作者
    Android 最火的快速開發架構XUtils 關于作者
    1. public class xUtilsPost {//自動實作異步處理  
    2.     public void doPost(String url, RequestParams params,  
    3.             final IOAuthCallBack iOAuthCallBack) {  
    4.         HttpUtils http = new HttpUtils();  
    5.         http.configCurrentHttpCacheExpiry(1000 * 10);  
    6.         http.send(HttpMethod.POST, url, params, new RequestCallBack<String>() {  
    7.             @Override  
    8.             public void onFailure(HttpException arg0, String arg1) {  
    9.                 // TODO Auto-generated method stub  
    10.             }  
    11.             @Override  
    12.             public void onSuccess(ResponseInfo<String> info) {  
    13.                 // TODO Auto-generated method stub  
    14.                 iOAuthCallBack.getIOAuthCallBack(info.result);  
    15.             }  
    16.         });  
    17.     }  
    18.     public void doPostLogin(int cityId, IOAuthCallBack iOAuthCallBack) {  
    19.         String url = "http://xxxxxxxxxxxx";  
    20.         RequestParams params = new RequestParams();  
    21.         params.addQueryStringParameter("currentCityId", cityId + "");  
    22.         params.addBodyParameter("path", "/apps/postCatch");  
    23.         doPost(url, params, iOAuthCallBack);  
    24.     }  
    25. }