在编写Android应用的时候经常需要做的事情就是对View的数据进行设置,在Android下设置控件相对.net来说是件麻烦的事情,首先根据ID从view把控件找出来然后才能设置相应属性值;如果数据成员多那这些工作的是繁锁的事情。下面通过java提供的reflect的功能实现数据自动绑定功能。

在实现之前先描述一下实现的功能效果。

传统方式:

 EditText editor = (EditText)v.findViewById(R.id.orders_orderid);
editor.setText(item.getOrderID());
editor =(EditText)v.findViewById(R.id.orders_employee);
editor.setText(item.getEmployee());
editor=(EditText)v.findViewById(R.id.orders_customer);
editor.setText(item.getCustomer());
editor =(EditText)v.findViewById(R.id.orders_orderdate);
editor.setText(item.getOrderDate());
editor =(EditText)v.findViewById(R.id.orders_requireddate);
editor.setText(item.getRequiredDate());
editor=(EditText)v.findViewById(R.id.orders_shipaddress);
editor.setText(item.getShipAddress());
editor =(EditText)v.findViewById(R.id.orders_shipcity);
editor.setText(item.getShipCity());
editor=(EditText)v.findViewById(R.id.orders_shipname);
editor.setText(item.getShipName());
editor =(EditText)v.findViewById(R.id.orders_shippedDate);
editor.setText(item.getShippedDate());
editor =(EditText)v.findViewById(R.id.orders_shipregion);
editor.setText(item.getShipRegion());

数据绑定方式:

 orderproto.Order item = mOrders.get(position);
Binding binder = BindingFactory.GetBindig("order_list_view", v);
binder.Execute(v, item);

数据绑定描述

下面详细讲解实现方式,为了达到数据绑定功能首先要有一个信息描述;由于接触android不久所以暂不清楚如何给控件添加一些自定义的XML描述,所以直接采用了ContentDescription这个属性来完成绑定描述的工作。约定绑定表达式为"bind:member".

当有了绑定描述信息后要做的事情就是找出容器中有那些控件存在绑定描述和对应的绑定的属性。

 private void findChild(View view) {
ViewGroup bg = null;
View nextChild = null;
if (view instanceof ViewGroup)
bg = (ViewGroup) view;
if (bg != null) {
for (int i = ; i < bg.getChildCount(); ++i) {
nextChild = bg.getChildAt(i);
if (nextChild instanceof ViewGroup) {
findChild(nextChild);
} else { CharSequence cs = nextChild.getContentDescription();
String bindinfo = null;
if (cs != null)
bindinfo = nextChild.getContentDescription().toString();
if (bindinfo != null && bindinfo.indexOf("bind:") == ) {
String member = bindinfo.split(":")[];
mControls
.add(new Control(nextChild.getId(),
new ControlHandler(
nextChild.getClass(), member))); }
} }
}
}

实现代码并不复杂,递归的方式寻找控件如果存在绑定信息的情况下添加了绑定列表中。

数据绑定接口

由于数据输出控件是不固定的,因此需要制定一个绑定接口;具体控件绑定就通过实现该接口来处理具体的工作。

 public interface IControlDataBinder {
void SetValue(View e,Object value,String format);
Object GetValue(View e);
}

TextView的实现

 public class TextViewDataBinder implements IControlDataBinder {

     @Override
public void SetValue(View e, Object value, String format) {
// TODO Auto-generated method stub
TextView control=(TextView)e;
if(format==null || format.equals(""))
{
control.setText(value.toString());
}
else
{
control.setText(String.format(format, value));
}
} @Override
public Object GetValue(View e) {
// TODO Auto-generated method stub
TextView control=(TextView)e;
return control.getText().toString();
} }

EditText的实现

 public class EditTextDataBinder implements IControlDataBinder {

     @Override
public void SetValue(View e, Object value, String format) {
// TODO Auto-generated method stub
EditText control=(EditText)e;
if(format==null || format.equals(""))
{
control.setText(value.toString());
}
else
{
control.setText(String.format(format, value));
}
} @Override
public Object GetValue(View e) {
// TODO Auto-generated method stub
EditText control=(EditText)e;
return control.getText().toString();
} }

对于其它控件则根据自己需要来实现。

对象数据获取

在java似乎不存在象c#那样的属性,要么是Field或方法。所以通过名称来得到绑定信息就要做一些简单的处理,如果Field不存储则要检索一下对应的get方法。

 public MemberInvoke(Class<?> type,String name)
{
try
{
mField = type.getField(name);
mIsMethod= false;
mInvalid = false;
}
catch(Exception e)
{ }
if(mInvalid)
{
try
{
mGetMethod = type.getMethod("get"+name);
mIsMethod= true;
mInvalid = false;
}
catch(Exception e)
{ }
}
}

数据绑定的具体工作

通过名称找到对应的Binding对象,所以名称和View在使用的时候必须保持一致。

 private static HashMap<String, Binding> mBindingTbl = new HashMap<String, Binding>();
public static Binding GetBindig(String name,View view)
{
Binding result = null;
result = mBindingTbl.get(name);
if(result ==null)
{
result = new Binding(view);
mBindingTbl.put(name, result);
}
return result;
}

找到相应Binding对象后直接处理所有需要绑定的控件即可。

 public void Execute(View view, Object source) {
try {
for (Control item : mControls) {
item.Handler.ToControl(view.findViewById(item.ID), source);
}
} catch (Exception e) { }
}

下载

ikende.rar (4.00 kb)

Android下实现数据绑定功能的更多相关文章

  1. Delphi在Android下实现BroadcastReceiver功能(举例在Delphi下获取USB外设拔插消息)

    在Android里,用java通过实现BroadcastReceiver接口,就可以获得Intent消息.可是Delphi程序不能直接实现JBroadcastReceiver,如何能够实现类似Java ...

  2. Xamarin. Android实现下拉刷新功能

    PS:发现文章被其他网站或者博客抓取后发表为原创了,给图片加了个水印 下拉刷新功能在安卓和iOS中非常常见,一般实现这样的功能都是直接使用第三方的库,网上能找到很多这样的开源库.然而在Xamarin. ...

  3. [转]Android下拉刷新完全解析,教你如何一分钟实现下拉刷新功能

    版权声明:本文出自郭霖的博客,转载必须注明出处. 转载请注明出处:http://blog.csdn.net/guolin_blog/article/details/9255575 最近项目中需要用到L ...

  4. Android下拉刷新完全解析,教你如何一分钟实现下拉刷新功能 (转)

    转载请注明出处:http://blog.csdn.net/guolin_blog/article/details/9255575 最 近项目中需要用到ListView下拉刷新的功能,一开始想图省事,在 ...

  5. android ListView上拉加载更多 下拉刷新功能实现(采用pull-to-refresh)

    Android实现上拉加载更多功能以及下拉刷新功能, 采用了目前比较火的PullToRefresh,他是目前实现比较好的下拉刷新的类库. 目前他支持的控件有:ListView, ExpandableL ...

  6. android 下 利用webview实现浏览器功能

    android 下 利用webview实现浏览器功能(一): 1.界面添加WEBVIEW控件. 2.在界面.JAVA代码页面(protected void onCreate(Bundle savedI ...

  7. Android StaggeredGrid 加下拉刷新功能 PullToRefresh

    https://github.com/etsy/AndroidStaggeredGrid  用的github上面提供瀑布流,继承于abslistview,回收机制不错,并且提供了OnScrollLis ...

  8. Android 下的usb框架及功能点【转】

    本文转载自:https://blog.csdn.net/tianruxishui/article/details/37902959 有关USB android框架的链接 http://blog.sin ...

  9. Android 高仿微信(QQ)滑动弹出编辑、删除菜单效果,增加下拉刷新功能

    不可否认,微信.QQ列表的滑动删除.编辑功能着实很经典(从IOS那边模仿过来的),然.Android这边,对列表的操作,其实大多还停留上下文菜单来实现. Android如何实现list item的滑动 ...

随机推荐

  1. MySQL系列

    目录: 一.初识数据库 二.库相关操作 三.表相关操作 四.记录相关操作 五.数据备份.pymysql模块 六.视图.触发器.事务.存储过程.函数 七.ORM框架SQLAlchemy 八.索引原理与慢 ...

  2. C# 0xC0000005 捕获

    [HandleProcessCorruptedStateExceptions]//捕获c++异常 [SecurityCritical]//捕获c++异常 public void xxx() { try ...

  3. java int数组任何数之间间隔不能对于指定数,内付极速排序

    public static void main(String[] args) { int []arr = {300,310, 210,313,334,360,255,233,275,274,410,5 ...

  4. 吻逗死(windows)系统下自动部署脚本(for java spring*)及linux命令行工具

    转载请注明出处:https://www.cnblogs.com/funnyzpc/p/10051647.html (^^)(^^)自動部署腳本原本在上個公司就在使用,由於近期同事需要手動部署一個Spr ...

  5. Python3从零开始爬取今日头条的新闻【一、开发环境搭建】

    Python3从零开始爬取今日头条的新闻[一.开发环境搭建] Python3从零开始爬取今日头条的新闻[二.首页热点新闻抓取] Python3从零开始爬取今日头条的新闻[三.滚动到底自动加载] Pyt ...

  6. 【安全性测试】drozer中关于AttackSurface的一些理解

    在推荐扫描Android APP的工具中,扫描组件可以推荐drozer.使用过drozer的使用者知道,如何查找各个组件上的攻击层面 run app.package.AttackSurface . 它 ...

  7. Express安装

    安装Express 安装好node.js的前提下,再来安装Express. 1.按win+rR,打开“运行”对话框,输入:“cmd”. 2.需要创建一个目录,然后进入目录并作为当前工作目录. mkdi ...

  8. LDAP & Implementation

    LDAP & Implementation 一.什么是LDAP? (一)在介绍什么是LDAP之前,我们先来复习一个东西:“什么是目录服务?” 1. 目录服务是一个特殊的数据库,用来保存描述性的 ...

  9. 记录opencv编译过程

    准备学习opencv,参考了几个网页终于完成.编辑器和opencv版本都选择最新的版本. 记录过程如下 1. 下载准备: 1)         Opencv源码, 下载地址: https://sour ...

  10. iis 和 node express 共用80端口 iisnode 全过程

    一.首先下载iisnode.exe https://github.com/tjanczuk/iisnode/wiki/iisnode-releases  链接 安装完毕! 二.打开IIS 7 选中 D ...