android 开发
文章平均质量分 76
iteye_21263
这个作者很懒,什么都没留下…
展开
-
frame Animation 的小例子
frame-by-frame animation 是一个展示一连串图片的简单的动画实现frame-by-frame animation 的步骤A将一连串图片存放在drawable文件夹中B define the list of frames to be animated. the name of the file is aframe_animation.xml <animation-lis...原创 2010-10-11 21:05:14 · 212 阅读 · 0 评论 -
TabActivity
下面是一个使用android tabactivity 的例子 //首先是继承TabActivity 实现 OnTabChangeListener 接口 这个接口在tab切换的时候调用public class MainTabActivity extends TabActivity implements TabHost.OnTabChangeListener { @Overrid...原创 2010-12-12 19:09:00 · 93 阅读 · 0 评论 -
Service的高级应用
下面是android Service的高级应用的一个例子,主要内容是在Service中spawn一个thread 来执行一写 CPU intensive的任务,以便让UI thread 能够更好的运行。这里我们使用到了Looper 和 Handler 两个特殊的类。Looper 是一个用来运行一个线程的Message循环 ,每一个线程都默认的有一个和他们相关联的Looper。Ha...原创 2010-12-12 20:48:22 · 92 阅读 · 0 评论 -
content provider 深入解析
Content providers are one of the primary building blocks of Android applications, providing content to applications. They encapsulate data and provide it to applications through the single Cont...原创 2010-12-15 22:04:46 · 114 阅读 · 0 评论 -
android 开发中的一些小知识点
1 关于onPause():onPause() is always called when the Activity ends, even if weinstigated that (with a finish() call for example). We will use this to save the current data back to the database. Good p...原创 2010-12-17 09:49:01 · 104 阅读 · 0 评论 -
How to Use Android Downloads Provider
本文转载自 http://blog.lytsing.org/archives/135.htmlHow to Use Android Downloads ProviderPosted on June 3, 2010 by deli“Good programmers write solid code, while great programmers reuse the...原创 2010-12-20 21:41:23 · 223 阅读 · 0 评论 -
android RelativeLayout 详解
<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent&q原创 2011-01-01 09:46:58 · 107 阅读 · 0 评论 -
Intent间传送数据一般有两种常用方法
Intent间传送数据一般有两种常用的办法: 1.extra 2.data. extra可以用Intent.putExtra放入数据。新启动的Activity可用Intent.getExtras取出来Bundle, 然后用Bundles.getLong, getInt, getBoolean, getString等函数来取放进入的值。 而data则是传输url。url可以是指我们熟悉的http, ...原创 2011-01-24 14:50:32 · 289 阅读 · 0 评论 -
Intent详解
在应用中,我们可以以两种形式来使用Intent:直接Intent:指定了component属性的Intent(调用setComponent(ComponentName)或者setClass(Context, Class)来指定)。通过指定具体的组件类,通知应用启动对应的组件。间接Intent:没有指定comonent属性的Intent。这些Intent需要包含足够的信息,这样系统才能根...原创 2011-03-03 14:18:45 · 128 阅读 · 0 评论 -
android 测试初探(android test)
android Testing and InstrumentationKey features of the Android testing environment include:Android extensions to the JUnit framework that provide access to Android system objects. An instrumentation...原创 2010-12-07 15:00:16 · 209 阅读 · 0 评论 -
android高效编程之使用本地变量
hava a look at the following code you will find that We assign the mNotesCursor field to a local variable at the start of the method. This is done as an optimization of the Android code. Accessi...原创 2010-12-05 14:26:15 · 160 阅读 · 0 评论 -
在不同的Activity中传递对象的方法
下面我们将要实现的功能是是将一个MyObject 对象从CurrrentActivity 中传递到 AimActivity中要在不同的Activity传递对象,首先这个对象必须实现Serializable 以说明它是可序列化的。如public class MyObject implements Serializable { /** * */ private static fina...原创 2010-12-02 10:20:24 · 156 阅读 · 0 评论 -
scale animation
Scale animation: You use this type of animation to make a view smalleror larger either on the x axis or on the y axis. You can also specify thepivot point around which you want the animation to take p...原创 2010-10-11 23:29:21 · 160 阅读 · 0 评论 -
android高效的编写高效代码
本文来源于: 从此学习网 原文: http://www.congci.com/item/android-gaoshou 高效的编写高效的代码高效快速的编写代码和编写高效率执行的代码很多时候都是对立的死敌,很多时候,你想快速的开发,代码的执行效率往往就会慢下来;你想编写高效的代码,开发速度就会慢下来。不重复发明轮子和发明新的轮子是高效的编写高效的代码的正确是道路。关于高效的代码,...原创 2010-10-17 19:13:42 · 109 阅读 · 0 评论 -
ViewAnimation
view animation 的实现Understanding View AnimationWhen a view is displayed on a presentation surface in Android, it goes through atransformation matrix. In graphics applications, you use transformation ...原创 2010-11-05 12:46:59 · 95 阅读 · 0 评论 -
android 中对SDCard 的操作
对于像视频这样的大文件,我们可以把它存放在SDCard。 SDCard是干什么的?你可以把它看作是移动硬盘或U盘。对其的操作因该注意的地方1.在AndroidManifest.xml中加入访问SDCard的权限如下: <!-- 在SDCard中创建与删除文件权限 --> <uses-permission android:name="andro...原创 2010-11-11 14:14:31 · 115 阅读 · 0 评论 -
android开发问题解决日志
1.、android中R文件消失的处理方式直接点击android工程,选择android tools 选项,点击Fix Project Properties就会自动生成gen 文件夹下的R文件 2.问题描述: 我打算在我的一个新的project中导入一个 Android library project, 但是一导入的时候就出现了错误,R文件没有了,试了上面的方法后...原创 2010-11-14 18:33:47 · 94 阅读 · 0 评论 -
Handler的理解
A Handler allows you to send and process Message and Runnable objects associated with a thread's MessageQueue. Each Handler instance is associated with a single thread and that thread's messa...原创 2010-11-14 20:58:40 · 104 阅读 · 0 评论 -
Working with Context Menus
Working with Context Menus Android supports the idea of context menus through an action called a long click.context menu is represented as a Context...原创 2010-11-15 23:36:47 · 111 阅读 · 0 评论 -
Cursor与Adapter
来自: http://hi.baidu.com/lfcaolibin/blog/item/2ce306ec77cebd4478f055b4.html Cursor与Adapter结合使用 查询数据库均会把查询的结果包装在一个Cursor的子类对象中返回。Cursor就像是位于结果集之上的一个游标,可以对结果集进行向前、向后或 随机的访问。而Cursor本身是一个接口类,提供了对结果...原创 2010-11-21 08:34:44 · 134 阅读 · 0 评论 -
Android Intent and Intent Filter (转)
Android Intent and Intent Filter 收藏Intents and Intent Filters Intent Objects Intent对象Intent Resolution Intent解析 Intent filtersFilters and security Filter和安全 Common cases 常见情况...原创 2011-03-10 22:47:01 · 128 阅读 · 0 评论