Android ORM应用开发框架KJFrameForAndroid使用详解

本文将为大家介绍一款Android ORM应用开发框架KJFrameForAndroid,很多时候我们也叫它KJLibrary。

KJFrameForAndroid简介

KJFrameForAndroid是一款基于Android的ORM和 IOC应用开发框架,封装了很多Android开发中常用的功能,包括Android中对Bitmap的操作类库。KJFrameForAndroid的设计非常精简,利用KJFrameForAndroid,我们可以用最少的代码完成很多丰富的Android功能应用,为Android开发者节省许多不必要的开发时间。

KJFrameForAndroid总共分为五大模块:UILibrary,UtilsLibrary,HttpLibrary,BitmapLibrary,DBLibrary。

KJFrameForAndroid使用方法

KJFrameForAndroid的使用方法也是十分简单,首先复制KJLibrary工程中bin目录下的kjlibrary.jar文件至自己项目的libs文件夹中,然后在AndroidManifest.xml文件中添加以下权限规则:

[html] view plain copy

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

这样就可以在Android项目中使用KJFrameForAndroid的所有功能了。

下面是利用KJFrameForAndroid实现的一些例子:

UILibrary

下面的代码实现了一个Android Tab小工具

[java] view plain copy

  1. public class TabExample extends KJActivity {
  2. @BindView(id = R.id.bottombar_content1, click = true)
  3. public RadioButton mRbtn1;
  4. @BindView(id = R.id.bottombar_content2, click = true)
  5. private RadioButton mRbtn2;
  6. @Override
  7. public void setRootView() {
  8. setContentView(R.layout.aty_tab_example);
  9. }
  10. @Override
  11. protected void initWidget() {
  12. super.initWidget();
  13. mRbtn1.setText("widget clicked listener");
  14. }
  15. @Override
  16. public void widgetClick(View v) {
  17. super.widgetClick(v);
  18. switch (v.getId()) {
  19. case R.id.bottombar_content1:
  20. ViewInject.toast("clicked mRbtn1");
  21. break;
  22. case R.id.bottombar_content2:
  23. ViewInject.toast("clicked mRbtn2");
  24. break;
  25. }
  26. }
  27. }

BitmapLibrary

下面的代码实现了对Bitmap图片的处理:

[java] view plain copy

  1. KJBitmap kjb = KJBitmap.create();
  2. /**
  3. * url can be local sdcard path or internet url;
  4. * view can whichever View set image(for ImageView set src;for View set background).
  5. */
  6. // local sdcard image
  7. kjb.display(imageView, "file:///storage/sdcard0/1.jpg");
  8. // internet url
  9. kjb.display(textView, http://www.xxx.com/xxx.jpg);
  10. //自定义图片显示大小
  11. kjb.display(view, http://www.xxx.com/xxx.jpg, 80, 80); //width=80,height=80

HttpLibrary

下面的代码实现了远程获取JSON的功能:

[java] view plain copy

  1. // get
  2. kjh.get("http://www.oschina.net/", new HttpCallBack();//like post, so just one example
  3. // post
  4. KJHttp kjh = new KJHttp();
  5. HttpParams params = new HttpParams();
  6. params.put("id", "1");
  7. params.put("name", "kymjs");
  8. kjh.post("http://192.168.1.149/post.php", params, new HttpCallBack() {
  9. @Override
  10. public void onPreStart() {
  11. super.onPreStart();
  12. KJLoger.debug("before start");
  13. }
  14. @Override
  15. public void onSuccess(String t) {
  16. super.onSuccess(t);
  17. ViewInject.longToast("request success");
  18. KJLoger.debug("log:" + t.toString());
  19. }
  20. @Override
  21. public void onFailure(Throwable t, int errorNo, String strMsg) {
  22. super.onFailure(t, errorNo, strMsg);
  23. KJLoger.debug("exception:" + strMsg);
  24. }
  25. @Override
  26. public void onFinish() {
  27. super.onFinish();
  28. KJLoger.debug("request finish. Regardless of success or failure.");
  29. }
  30. });

DBLibrary

下面的代码实现了对数据库的操作:

[java] view plain copy

  1. // data file
  2. KJDB db = KJDB.create(this);
  3. User ugc = new User(); //warn: The ugc must have id field or @ID annotate
  4. ugc.setEmail("[email protected]");
  5. ugc.setName("kymjs");
  6. db.save(ugc);
  7. //one - many
  8. public class Parent{  //JavaBean
  9. private int id;
  10. @OneToMany(manyColumn = "parentId")
  11. private OneToManyLazyLoader<Parent ,Child> children;
  12. /*....*/
  13. }
  14. public class Child{ //JavaBean
  15. private int id;
  16. private String text;
  17. @ManyToOne(column = "parentId")
  18. private  Parent  parent;
  19. /*....*/
  20. }
  21. List<Parent> all = db.findAll(Parent.class);
  22. for( Parent  item : all){
  23. if(item.getChildren ().getList().size()>0)
  24. Toast.makeText(this,item.getText() + item.getChildren().getList().get(0).getText(),Toast.LENGTH_LONG).show();
  25. }

当然这些只是一些最简单的例子,如果你熟悉Android开发,也可以去KJFrameForAndroid的官方网站上学习更多关于KJFrameForAndroid的高级用法。

时间: 2024-10-02 09:03:32

Android ORM应用开发框架KJFrameForAndroid使用详解的相关文章

Android 最火的快速开发框架AndroidAnnotations使用详解

Android 最火的快速开发框架androidannotations配置详解文章中有eclipse配置步骤,Android 最火快速开发框架AndroidAnnotations简介文章中的简单介绍,本篇注重讲解AndroidAnnotations中注解方法的使用. @EActivity 示例: @EActivity(R.layout.main) public class MyActivity extends Activity { } @fragment 示例: @EFragment(R.lay

Android 最火的快速开发框架androidannotations配置详解

以前给大家介绍的xUtils是国内比较火的快速开发框架,但是它的注解机制不是太稳定而且注解可选也比较少,今天给大家介绍一个国外的一个框架主要专注于注解的开发,简化Android代码编写,因为配置注意事项较为复杂,所以先详细介绍一下配置: git官网:https://github.com/excilys/androidannotations 下载完解压目录如上,AndroidAnnotations是源码工程,example是例子工程, 打开\examples\HelloWorldEclipse,如

unity导出android遇到的build target 错误详解

1. 导出运行后显示build target ="9",version is wrong ,can't  loaded xxx.untiy3d files 之类的,一般情况看导出的jar包内的project.properties中target 是否正确,改正后而且要clean相关项目. 2.看AndroidManifest.xml下    android:minSdkVersion和android:targetSdkVersion 是否正确,改正后refresh 3.看报错信息是否提示

Android系列之Android 命令行手动编译打包详解

http://www.qdmm.com/BookReader/1222701,54263720.aspxhttp://www.qdmm.com/BookReader/1222701,54263869.aspxhttp://www.qdmm.com/BookReader/1222701,54263871.aspxhttp://www.qdmm.com/BookReader/1222701,54263876.aspxhttp://www.qdmm.com/BookReader/1222701,542

Android ViewGroup触摸屏事件派发机制详解与源码分析

PS一句:最终还是选择CSDN来整理发表这几年的知识点,该文章平行迁移到CSDN.因为CSDN也支持MarkDown语法了,牛逼啊! [工匠若水 http://blog.csdn.net/yanbober] 该篇承接上一篇<Android View触摸屏事件派发机制详解与源码分析>,阅读本篇之前建议先阅读. 1 背景 还记得前一篇<Android View触摸屏事件派发机制详解与源码分析>中关于透过源码继续进阶实例验证模块中存在的点击Button却触发了LinearLayout的事

Android 4.4 KitKat NotificationManagerService使用详解与原理分析(二)__原理分析

前置文章: <Android 4.4 KitKat NotificationManagerService使用详解与原理分析(一)__使用详解> 转载请务必注明出处:http://blog.csdn.net/yihongyuelan 概况 在上一篇文章<Android 4.4 KitKat NotificationManagerService使用详解与原理分析(一)__使用详解>中详细介绍了NotificationListenerService的使用方法,以及在使用过程中遇到的问题和

android adb 的各种使用方式详解

这篇文章主要介绍在windows 程序中使用adb 的方法,不介绍adb 的命令. 1) 启动adb 进程,从管道获取输出. 这种方式的弊端有多少,我也不知道,反正就是各种问题吧.但是目前我问过很多朋友,他们都是这么做的,因为这种方法最简单.弊端我列举一下 1) 每次执行一个adb 命令都要启动一个adb 进程,速度太慢,好像就是很不爽 2)  偶尔发现进程管理器中有N 多个adb 进程,然后就卡了. 3)  从管道获取输出,在很多情况下会发现adb 卡死了,进程退不出来. 4)  曾经发现 a

Android实习札记(6)---ViewPager使用详解

Android实习札记(6)---ViewPager使用详解                                    --转载请注明出处:coder-pig 札记(5)中介绍了Fragment构建简单的底部导航栏,在结尾的时候说要在下一节中,结合Viewpager 实现进入软件时的引导界面,说到ViewPager,很多朋友都用过,不过只知道粘贴复制,连一些基本的 东西都不知道,那是不行的,在本节中就先讲下ViewPager的一些基本概念吧! 1.首先ViewPager在哪个包下?

Android 布局学习之——Layout(布局)详解二(常见布局和布局参数)

[Android布局学习系列]   1.Android 布局学习之——Layout(布局)详解一   2.Android 布局学习之——Layout(布局)详解二(常见布局和布局参数)   3.Android 布局学习之——LinearLayout的layout_weight属性   4.Android 布局学习之——LinearLayout属性baselineAligned的作用及baseline    Layout Parameters(布局参数): 在XML文件中,我们经常看到类似与lay