Android API之android.widget.Filterable】的更多相关文章

  android.widget.Filterable 定义了一种可过滤的行为.Filterable接口通常有android.widget.Adapter来实现.接口Filterable中有个抽象方法getFilter()需要实现. Filter android.widget.Filterable.getFilter() 返回一个filter对象,用来过滤出符合某种pattern的数据.getFilter()方法通常在android.widget.Adapter类中实现.   android.w…
原文:http://android.eoe.cn/topic/summary 翻译:[eoeAndroid原创团队]kris.流风而逝.贼寇在何方.snowxwyo.lsy4833406 更新日期:2012-06-28 Android 4.1 (Jelly Bean)发布了,这次发布包含了一些性能及用户体验上面的优化.也为用户和开发人员添加了一些新的功能.本文主要介绍了一些对于开发人员来说比较关注或者说有用的api. 对于应用开发人员来说,Android 4.1里面包括了SDK编译包(可以编译你…
android.content.BroadcastReceiver Base class for code that will receive intents sent by sendBroadcast(). You can either dynamically register an instance of this class with Context.registerReceiver() or statically publish an implementation through the…
android.provider.ContactsContract.RawContacts Constants for the raw contacts table, which contains one row of contact information for each person in each synced account. Sync adapters and contact management apps are the primary consumers of this API.…
android.provider.ContactsContract ContactsContract是联系人provider和app的contract.定义了已支持的URL和column.取代了之前的Contacts. Overview ContactsContract定义了有关联系人信息的可扩展的数据库.Contact信息保存为三层数据模型: 1. Data表保存了任何类型的个人数据.例如:电话号码.email地址等.存在Data表中的数据类型集是开放的(无限制的).提供了常用数据类型集.任何…
android.os.Parcelable Interface for classes whose instances can be written to and restored from a Parcel. Classes implementing the Parcelable interface must also have a static field called CREATOR, which is an object implementing the Parcelable.Creat…
android.content.AsyncQueryHandler A helper class to help make handling asynchronous ContentResolver queries easier.   void android.content.AsyncQueryHandler.startQuery(int token, Object cookie, Uri uri, String[] projection, String selection, String[]…
android.provider.ContactsContract.Data Constants for the data table, which contains data points tied to a raw contact. Each row of the data table is typically used to store a single piece of contact information (such as a phone number) and its associ…
android.provider.ContactsContract.Contacts 对应contacts数据表.RawContacts的一个聚合(aggregate)代表同一个人.每个人在数据表contacts中有一个记录. Operations Insert Contact不能直接/显式创建.插入一个RawContact时,provider首先查找是否存在一个Contact表示同一个人.如果存在,provider将Contacts._ID赋值给RawContacts.CONTACT_ID.如…
android.view.View.MeasureSpec MeasureSpec是View的内部类 public static class MeasureSpec MeasureSpec封装从parent传递给child的layout要求.每个MeasureSpec表示对width/height的要求.MeasureSpec由size和mode组成.可用的mode有3种: 1. UNSPECIFIED表示parent没有强加给child任何constraint. 2. EXACTLY表示par…
android.os.AsyncTask<Params, Progress, Result> AsyncTask enables proper and easy use of the UI thread. This class allows to perform background operations and publish results on the UI thread without having to manipulate threads and/or handlers. An a…
When an object of a type is attached to an Editable, its methods will be called when the text is changed. 接口TextWatcher定义了三个抽象方法: public void beforeTextChanged(CharSequence s, int start, int count, int after) This method is called to notify you that,…
Testing Fundamentals The Android testing framework, an integral part of the development environment, provides an architecture and powerful tools that help you test every aspect of your application at every level from unit to framework. Android测试框架,是A…
才可以开始工作的API,你将需要下载的API,并确保你有一个谷歌地图Android的API V2关键.API和关键是免费提供的. 概观 获得谷歌地图Android的API V2 谷歌地图API密钥 显示的证书信息 创建一个API项目 获取API密钥 添加到您的应用程序的API密钥 指定的应用程序清单的设置 指定权限 需要OpenGL ES的第2版 添加地图 概观 创建一个新的Andr​​oid应用程序,使用谷歌地图的Andr​​oid API V2需要几个步骤.许多在本节中列出的步骤,只会进行一…
原文链接:http://android.eoe.cn/topic/android_sdk Android API 指南 - Android API Guides 应用的组成部分 - Application Components(已经完成已经排版) 应用的基本原理 - Application Fundamentals 活动 - Activities 片段 - Fragments(未完成) 加载器 - Loaders(已完成) 任务和返回堆 - Tasks and Back Stack(已完成已排版…
up vote117down votefavorite 44 How do I get rid of the extra padding in the new Toolbar with Android SDK API version 21 (the support library)? I am talking about the red arrows on this picture: Here is the code I am using: <android.support.v7.widget.…
在Android应用开发中,我们一般都是用java语言.所以Android很好的继承了java的功能,不过为了满足手机系统的需要和实现一些新的功能,Android还提供了一些特有的扩展的java功能.有了这些Android特有的包,我们才能实现Android平台上的许多功能,下面卓天下为大家介绍一些重要包: android.app :提供高层的程序模型.提供基本的运行环境 android.content :包含各种的对设备上的数据进行访问和发布的类 android.database :通过内容提…
Creating a Navigation Drawer中使用的Navigation Drawer的android:minSdkVersion="14",现在Android API Version 小于14的还有30%左右呢.Android个版本的占有量可参考 Platform Version. Android Platform Version 我们的应用为了适配不同的版本,需要降低minSdkVersion,作者一般适配SDK到API 7.这一篇博文也是把Creating a Nav…
前言 本章内容是android.widget.AdapterView,版本为Android 2.3 r1,翻译来自"cnmahj",欢迎大家访问他的博客:http://android.toolib.net/blog/,再次感谢"cnmahj"!欢迎你一起参与Android API 的中文翻译,联系我over140@gmail.com. 声明 欢迎转载,但请保留文章原始出处:) 博客园:http://www.cnblogs.com/ Android中文翻译组:http…
前言 本章内容是android.widget.AdapterView.OnItemSelectedListener,版本为Android 2.3 r1,翻译来自"cnmahj",欢迎大家访问他的博客:http://android.toolib.net/blog/,再次感谢"cnmahj"!欢迎你一起参与Android API 的中文翻译,联系我over140@gmail.com. 声明 欢迎转载,但请保留文章原始出处:) 博客园:http://www.cnblogs…
前言 本章内容是android.widget.AdapterView.OnItemLongClickListener,版本为Android 2.3 r1,翻译来自"cnmahj",欢迎大家访问他的博客:http://android.toolib.net/blog/,再次感谢"cnmahj"!欢迎你一起参与Android API 的中文翻译,联系我over140@gmail.com. 声明 欢迎转载,但请保留文章原始出处:) 博客园:http://www.cnblog…
前言 本章内容是android.widget.AdapterView.OnItemClickListener,版本为Android 2.3 r1,翻译来自"麦子",欢迎大家与他交流:0mellisa0@gmail.com,再次感谢"麦子"!欢迎你一起参与Android API 的中文翻译,联系我over140@gmail.com. 声明 欢迎转载,但请保留文章原始出处:) 博客园:http://www.cnblogs.com/ Android中文翻译组:http:/…
前言 本章内容是android.widget.AdapterView.AdapterContextMenuInfo,版本为Android 2.3 r1,翻译来自"cnmahj",欢迎大家访问他的博客:http://android.toolib.net/blog/,再次感谢"cnmahj"!欢迎你一起参与Android API 的中文翻译,联系我over140@gmail.com. 声明 欢迎转载,但请保留文章原始出处:) 博客园:http://www.cnblogs…
备注:之前Android入门学习的书籍使用的是杨丰盛的<Android应用开发揭秘>,这本书是基于Android 2.2API的,目前Android已经到4.4了,更新了很多的API,也增加了很多的新组件,一直没有系统的学习过.现在开始这个“完善Android学习”系列,将2.2以后的新知识做一个概览.概览来自:http://developer.android.com/about/versions/android-4.0.html Android4.0(ICE_CREAM_SANDWICH)为…
备注:之前Android入门学习的书籍使用的是杨丰盛的<Android应用开发揭秘>,这本书是基于Android 2.2API的,目前Android已经到4.4了,更新了很多的API,也增加了很多的新组件,一直没有系统的学习过.现在开始这个“完善Android学习”系列,将2.2以后的新知识做一个概览.概览来自:http://developer.android.com/about/versions/android-3.0.html 前面的Android2.0称为Gingerbread(姜饼),…
原文:Introduction to Google Maps API for Android 作者:Eunice Obugyei 译者:kmyhy 从健康类 app Runkeeper 到游戏 app 精灵宝可梦,位置服务对现代 app 来说越来越重要. 在本文中,我们将创建一个 app.名字就叫做 City Guide. 这个 app 同意用户搜索一个地点,使用 Google 地图显示这个地点的位置并监听用户的位置改变. 我们将学习怎样使用 Google 地图 API for Android,…
本文档介绍了Android中运行基本任务NFC. 它说明了怎样在NDEF消息的形式发送和接收数据的NFC并介绍了支持这些功能的Andr​​oid框架的API. 对于更高级的主题.包含与非NDEF数据工作的讨论.请參阅高级NFC. 没有与NDEF数据和Android时两个主要用例: 从NFC标签读取NDEF数据 从一台设备喜气洋洋NDEF消息到还有一个通过Android Beam™ 从NFC标签读取NDEF数据与标签调度系统,当中分析发现NFC标签处理,适当地进行分类的数据,并启动一个应用程序.是…
从健康类 app Runkeeper 到游戏 app 精灵宝可梦,位置服务对现代 app 来说越来越重要. 在本文中,我们将创建一个 app,名字就叫做 City Guide.这个 app 允许用户搜索一个地点,使用 Google 地图显示这个地点的位置并监听用户的位置改变. 我们将学习如何使用 Google 地图 API for Android,Google 的位置服务 API 和 Google 的 Places API for Android 完成如下工作: 显示用户当前位置 在地图上显示和…
[译]Android API 规范 译者按: 修改R代码遇到Lint tool的报错,搜到了这篇文档,aosp仓库地址:Android API Guidelines. 58e9b5f Project import generated by Copybara. by Android API Council · 9 months ago c0b835d Initial empty repository by Baligh Uddin · 8 years ago 提交记录显示最近才更新的,是官方的应用…
两年前开发过的GoogleMap已经大变样,最近有项目要用到GoogleMap,重新来配置Android GoogleMap开发环境,还真是踩了不少坑. 一.下载Android SDK Manager(& Proxy Setting) 此小节详见 Android开发环境搭建之AndroidStudio 二.安装Google Play Services SDK.Google APIs Platform(19) 由于SDK下载需要FQ,因此需要配置代理镜像[http://www.androiddev…