Android架構之快速開發架構xUtil

來源:互聯網
上載者:User

Android架構之快速開發架構xUtil

做Android開發我們一般是從原生態的開始,就是調用預設那些Android代碼來開發我們的應用,但是到了一定程度,我們就想著怎麼來快速開發我們的應用,這個時候我們就要著手來研究架構了。下面介紹一個很流行的架構xUtil:

 

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快速開發架構需要有以下許可權:
              
            混淆時注意事項:
            • 添加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(wyouflf@qq.com);user.setName(wyouflf);db.save(user); // 使用saveBindingId儲存實體時會為實體的id賦值...// 尋找Parent entity = db.findById(Parent.class, parent.getId());List list = db.findAll(Parent.class);//通過類型尋找Parent Parent = db.findFirst(Selector.from(Parent.class).where(name,=,test));// IS NULLParent Parent = db.findFirst(Selector.from(Parent.class).where(name,=, null));// IS NOT NULLParent 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 pageOffsetList 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 dbModels = db.findDbModelAll(Selector.from(Parent.class).groupBy(name).select(name, count(name)));...List 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中注入:@Overridepublic void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.main);    ViewUtils.inject(this); //注入view和事件    ...    textView.setText(some text...);    ...}//在Fragment中注入:@Overridepublic 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(){        @Override        public void onLoading(long total, long current, boolean isUploading) {            testTextView.setText(current + / + total);        }        @Override        public void onSuccess(ResponseInfo 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() {        @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 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() {        @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 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);
                  • 執行個體,BitmapUtils:
                    public class xUtilsImageLoader {//架構裡面設定了緩衝和非同步作業,不用單獨設定線程池和緩衝機制(也可以自訂緩衝路徑)        private BitmapUtils bitmapUtils;      private Context mContext;        public xUtilsImageLoader(Context context) {          // TODO Auto-generated constructor stub          this.mContext = context;          bitmapUtils = new BitmapUtils(mContext);          bitmapUtils.configDefaultLoadingImage(R.drawable.logo_new);//預設背景圖片          bitmapUtils.configDefaultLoadFailedImage(R.drawable.logo_new);//載入失敗圖片          bitmapUtils.configDefaultBitmapConfig(Bitmap.Config.RGB_565);//設定圖片壓縮類型        }      /**      *       * @author sunglasses      * @category 圖片回呼函數      */      public class CustomBitmapLoadCallBack extends              DefaultBitmapLoadCallBack {            @Override          public void onLoading(ImageView container, String uri,                  BitmapDisplayConfig config, long total, long current) {          }            @Override          public void onLoadCompleted(ImageView container, String uri,                  Bitmap bitmap, BitmapDisplayConfig config, BitmapLoadFrom from) {              // super.onLoadCompleted(container, uri, bitmap, config, from);              fadeInDisplay(container, bitmap);          }            @Override          public void onLoadFailed(ImageView container, String uri,                  Drawable drawable) {              // TODO Auto-generated method stub          }      }        private static final ColorDrawable TRANSPARENT_DRAWABLE = new ColorDrawable(              android.R.color.transparent);      /**      * @author sunglasses      * @category 圖片載入效果      * @param imageView      * @param bitmap      */      private void fadeInDisplay(ImageView imageView, Bitmap bitmap) {//目前流行的漸層效果          final TransitionDrawable transitionDrawable = new TransitionDrawable(                  new Drawable[] { TRANSPARENT_DRAWABLE,                          new BitmapDrawable(imageView.getResources(), bitmap) });          imageView.setImageDrawable(transitionDrawable);          transitionDrawable.startTransition(500);      }      public void display(ImageView container,String url){//外部介面函數          bitmapUtils.display(container, url,new CustomBitmapLoadCallBack());      }  }  
                    • 執行個體:HttpGet:
                      public class xUtilsGet {//自動實現非同步處理,自己不用處理        public void getJson(String url,RequestParams params,final IOAuthCallBack iOAuthCallBack){            HttpUtils http = new HttpUtils();          http.configCurrentHttpCacheExpiry(1000 * 10);//設定逾時時間          http.send(HttpMethod.GET, url, params, new RequestCallBack() {//介面回調                @Override              public void onFailure(HttpException arg0, String arg1) {                  // TODO Auto-generated method stub              }                @Override              public void onSuccess(ResponseInfo info) {                  // TODO Auto-generated method stub                  iOAuthCallBack.getIOAuthCallBack(info.result);//利用介面回調資料轉送              }          });      }      public void getCataJson(int cityId,IOAuthCallBack iOAuthCallBack) {//外部介面函數          String url = http://xxxxxxxxxx;          RequestParams params = new RequestParams();          params.addQueryStringParameter(currentCityId, cityId+);          getJson(url,params,iOAuthCallBack);      }  }  
                      • 執行個體:HttpPost(和HttpGet類似):
                        public class xUtilsPost {//自動實現非同步處理        public void doPost(String url, RequestParams params,              final IOAuthCallBack iOAuthCallBack) {            HttpUtils http = new HttpUtils();          http.configCurrentHttpCacheExpiry(1000 * 10);          http.send(HttpMethod.POST, url, params, new RequestCallBack() {                @Override              public void onFailure(HttpException arg0, String arg1) {                  // TODO Auto-generated method stub              }                @Override              public void onSuccess(ResponseInfo info) {                  // TODO Auto-generated method stub                  iOAuthCallBack.getIOAuthCallBack(info.result);              }          });      }        public void doPostLogin(int cityId, IOAuthCallBack iOAuthCallBack) {          String url = http://xxxxxxxxxxxx;          RequestParams params = new RequestParams();          params.addQueryStringParameter(currentCityId, cityId + );          params.addBodyParameter(path, /apps/postCatch);          doPost(url, params, iOAuthCallBack);      }  }

                         

                         

                         


                         

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.