发布时间:2013-04-27 13:27:46
Application Context一个android应用中一般包含以下组件(component):activities, services, content providers, and broadcast receivers.这些组件都在同一个application context中。Application Context 引用应用的环境和应用中的组件运行的进程(process)。它允许应用在不同的构建块之间共享数据和资源。Applica.........【阅读全文】
发布时间:2013-04-26 13:33:09
android创建自定义搜索框dialog。本例主要包含2个Activity类和2个Layout xml文件activity_main1.xml 主界面包含一行文字和一个Button,点击startdialog这个button就显示自定义的对话框。点击(此处)折叠或打开<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:and.........【阅读全文】
发布时间:2013-04-26 11:40:57
布局文件activity_main.xml点击(此处)折叠或打开<?xml version="1.0" encoding="utf-8"?><ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/ScrollView01" &nbs.........【阅读全文】
发布时间:2013-04-25 12:45:29
打开DDMSEclipse -> Window -> open perspective ->DDMSif want push file to Emulator then you can use DDMS->select the emulator ->then open file explorer ->select SDcard(mnt/sdcard)->then click push button on right top to browse the file.[2013-04-24 16:25:28 - ddms] transfer error: Read-on.........【阅读全文】
发布时间:2013-04-13 19:52:38
阅读《iOS 5 编程入门经典(第3版)——开发iPhone与iPad应用》,完成第一个ios程序,学习笔记如下:1. 打开xcode 选择 "File->New Project"2. 从左边的菜单中选择"Command Line Utility" ----- "Foundation Tool" 3. 命名为 "HelloWorld" 并保存4. 打开项目,点击 "Build & Go",输出 ".........【阅读全文】