CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - SimpleAdapter

搜索资源列表

  1. TryChatPop2

    0下载:
  2. Android中使用ListView实现汽泡短信聊天。自定义聊天控件,实现类似apple中短信似的气泡聊天。-A chatting demo using pop way in Android. It s coded with a custom SimpleAdapter.
  3. 所属分类:android

    • 发布日期:2017-03-29
    • 文件大小:174521
    • 提供者:魏兰
  1. MainActivityDemo

    0下载:
  2. 一个ListActivity的简单例子,使用SimpleAdapter-a demo of ListActivity for android
  3. 所属分类:Other Embeded program

    • 发布日期:2017-04-06
    • 文件大小:137280
    • 提供者:li
  1. listview

    0下载:
  2. listView 的用法针对customAdapter 、 SimpleAdapter的用法做了比较-listView usage for customAdapter, SimpleAdapter were compared with the use of
  3. 所属分类:Java Develop

    • 发布日期:2017-04-16
    • 文件大小:142837
    • 提供者:luoye
  1. CustomSimpleAdapter

    0下载:
  2. SimpleAdapter是适配器中扩展性最好的,但是如果用simpleAdapter添加按钮,为按钮添加响应事件很难做到。为此我们可以继承simpleAdapter,自己实现响应事件。-SimpleAdapter expansion adapter is the best, but if simpleAdapter Add button to add the button to respond to events is difficult to do. To this end we can i
  3. 所属分类:android

    • 发布日期:2017-03-29
    • 文件大小:55795
    • 提供者:leo
  1. AdapterDemo-2012-4-12-153049

    0下载:
  2. 源码文件中实现了大多数List适配器的入门应用,包括:ArrayAdapter/SimpleAdapter/自定义CustomerBaseAdapter/SimpleCursorAdapter/自定义CursorAdapter,其他内容:SQLiteOpenHelper/ContentProvieder等-the source is about the android list adapter, that contains ArrayAdapter/SimpleAdapter/Customer
  3. 所属分类:android

    • 发布日期:2017-04-01
    • 文件大小:104776
    • 提供者:bluephaethon
  1. Android-ListViewsuseSimpleAdapter

    0下载:
  2. Android-ListViews使用SimpleAdapter适配器的源码例子-Android-ListViews use SimpleAdapter Source code examples
  3. 所属分类:android

    • 发布日期:2017-11-07
    • 文件大小:171687
    • 提供者:aaaaaa
  1. android_baseadapter

    0下载:
  2. android程序中的操作BaseAdatper操作。适合扩展BaseAdatper来实现UI的自定义。加强了SimpleAdapter等的效果。-The android program operation BaseAdatper operation. Suitable for BaseAdatper extended to realize the custom UI. To strengthen the effect of SimpleAdapter, etc.
  3. 所属分类:android

    • 发布日期:2017-11-24
    • 文件大小:59651
    • 提供者:颜俊杰
  1. ListViewDemo

    0下载:
  2. 列表的显示需要三个元素: 1.ListVeiw 用来展示列表的View。 2.适配器 用来把数据映射到ListView上的中介。 3.数据 具体的将被映射的字符串,图片,或者基本组件。 根据列表的适配器类型,列表分为三种,ArrayAdapter,SimpleAdapter和SimpleCursorAdapter 其中以ArrayAdapter最为简单,只能展示一行字。SimpleAdapter有最好的扩充性,可以自定义出各种效果。Simple
  3. 所属分类:android

    • 发布日期:2017-11-23
    • 文件大小:73041
    • 提供者:Megustas丶莫
  1. MultiLayoutAdapter

    0下载:
  2. 这是一个使得ListView能够呈现多种布局的多布局适配器。ListView用了SimpleAdapter之后就只能呈现一种Layout,这样虽然简单但是有时不能满足需求。所以,我下载SDK的源码重写了SimpleAdapter,你可以看出那些JavaDoc还是之前SimpleAdapter的JavaDoc。 各位下载了之后能将它当成SimpleAdapter使用。 主要修改的地方是: 1、构造方法不再接受单个Layout Resource,能接受Resource数组。
  3. 所属分类:android

    • 发布日期:2017-11-03
    • 文件大小:4365
    • 提供者:ck
  1. SimpleAdapter-and-List

    0下载:
  2. SimpleAdapter是一个简单的适配器,可以将静态数据映射到XML文件中定义 好的视图。-SimpleAdapter is a simple adapter, static data can be mapped to an XML file defined view.
  3. 所属分类:software engineering

    • 发布日期:2017-04-01
    • 文件大小:12161
    • 提供者:刘广志
  1. ListViewProject_2

    0下载:
  2. 列表之SimpleAdapter适配,Android开发精典案例源码,很好的参考资料。-List the SimpleAdapter adapter, Android development of classical case of source code, a good reference.
  3. 所属分类:android

    • 发布日期:2017-04-16
    • 文件大小:51429
    • 提供者:糟熘鱼片
  1. MyDict

    0下载:
  2. Android开发的简单的单词记录本,主要涉及选项菜单选中事件处理,SQLite数据库的操作,本程序能够实现单词的添加与查询,主要涉及到选项菜单选中事件处理,SQLite数据库的操作,SimpleAdapter类的使用、页面之间的切换。-Android development of simple word book, mainly related to the options menu select event handling, SQLite database operation, this
  3. 所属分类:android

    • 发布日期:2017-04-05
    • 文件大小:740436
    • 提供者:David
  1. SimpleAdapter

    0下载:
  2. An easy adapter to map static data to views defined in an XML file.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-14
    • 文件大小:3621
    • 提供者:xinjonnun
  1. CustomLVi

    0下载:
  2. 在开发中,我们经常使用到ListView这个控件。Android的API也提供了许多创建ListView适配器的快捷方式。例如ArrayAdapter、SimpleAdapter和SimpleCursorAdapter等。但你是否发现,如果采用这些系统自带的适配器,对于事件的响应只能局限在一个行单位。假设一行里面有一个按钮和一个图片控件,它们之间的响应操作是不一样的。若采用系统自带的适配器,就不能精确到每个控件的响应事件。这时,我们一般采取自定义适配器来实现这个比较精确地请求。-its wond
  3. 所属分类:ListView-ListBox

    • 发布日期:2017-04-24
    • 文件大小:10994
    • 提供者:ddd
  1. SimpleListView

    0下载:
  2. SimpleListView simpleadapter 的使用方法-SimpleListView simpleadapter 的使用方法
  3. 所属分类:android

    • 发布日期:2017-05-09
    • 文件大小:1726351
    • 提供者:david
  1. my_list

    0下载:
  2. 使用simpleadapter实现listview的流程-Simpleadapter realize the use of listview process
  3. 所属分类:android

    • 发布日期:2017-04-04
    • 文件大小:32310
    • 提供者:
  1. LegalAidApp

    0下载:
  2. 运用fragment的实例,包括一个SimpleAdapter的使用。第一次上传,代码生硬,还请多多指教。-Fragment of examples of the use, including the use of a SimpleAdapter. First upload code stiff, also requested the exhibitions.
  3. 所属分类:android

    • 发布日期:2017-05-27
    • 文件大小:10147383
    • 提供者:
  1. ListViewDemo

    0下载:
  2. 要将数据库中的数据列表显示在屏幕上,我们要使用ListView这个控件,当用户从数据库中取出数据时,要将数据绑定到显示控件上,如何绑定呢,我们需要创建适配器进行绑定,创建适配器有两种方式: 第一种是用SimpleAdapter创建(要求绑定的数据是List<HashMap<String, Object>>数据类型) 第二种是用SimpleCursorAdapter创建(要求绑定的数据是Cursor数据类型)-To list the data is d
  3. 所属分类:android

    • 发布日期:2017-05-07
    • 文件大小:1328387
    • 提供者:lee
  1. SimpleAdaperViewDemo

    0下载:
  2. Android开发:高级控件ListView+SimpleAdapter使用示例-the example of using ListView and SimpleAdapter in android developing
  3. 所属分类:android

    • 发布日期:2017-05-11
    • 文件大小:2412883
    • 提供者:胡凤祥
  1. Android-Inquiries-call-number--name

    0下载:
  2. 安卓源码,查询来电号码、姓名。6个文件,分别继承BroadcastReceiver、SimpleAdapter、ListActivity、ExpandableListActivity、SQLiteOpenHelper、Service-Inquiries call number, name
  3. 所属分类:android

    • 发布日期:2017-05-03
    • 文件大小:790223
    • 提供者:han
« 12 »
搜珍网 www.dssz.com