2010年3月31日星期三

ase_r20.apk

android-scripting(Android設備上的腳本語言)推出了最新版本, ase_r20.apk
, 可以瀏覽android-scripting下載.

相關文章: Android Scripting Environment (ASE) - Android設備上的腳本語言.

2010年3月24日星期三

谷歌中国搜索服务正式关闭

两个月以来围绕着谷歌搜索服务是否正式退出中国大陆的流言得到了官方确认http://googleblog.blogspot.com/2010/03/new-approach-to-china-update.html。美国时间三月二十二日下午(中国大陆时间三月二十三日凌晨)搜索引擎巨人Google所在中国谷歌搜索服务正式关闭,www.google.cn将会被转接至www.google.hk,同时中国大陆用户可以选择使用英文,繁体中文或者简体中文来继续搜索。与此同时谷歌中国的其他业务运营正常包括Google Talk,Google Docs,Google Map,Google Code等。
要监察更多在中国可用的谷歌服务,请访问这个报告页面 http://www.google.com/prc/report.html#hl=en,在迁移的这段时间会每天更新以告知服务是否被×。

2010年3月21日星期日

LiveAndroid, 讓Android在x86平台上面跑

LiveAndroid是一個Android操作系統的光盤映像檔, 只需將映像檔刻錄在光盤上, 重新啟動, 便可以在x86平台上面嘗試Android操作系統, 無須安裝任何文件或影響你的電腦.

你還可以使用映像檔在虛擬化應用程序上使用, 例如: VirtualBox, VMWare 或 Microsoft Virtual PC.

當前LiveAndroid版本是0.3, 可從LiveAndroid網站下載.



相關文章: 在Sun VirtualBox上安裝LiveAndroid
相關文章: Android-x86 Project: 跑在PC上的Android

2010年3月20日星期六

Android模擬器(Android Emulator)

Android SDK提供一個移動設備模擬器(Android Emulator) - 一個在電腦上運行的虛擬移動設備, 它可以讓你不需使用真實的物理設備便可測試原型,開發和測試 Android應用程序.

Android Emulator 模擬典型移動設備的所有硬件和軟件的特徵, 除了它不能接聽或打出實際的電話. 它提供了多種導航和控制鍵,你可以使用滑鼠或鍵盤“按”來產生事件. 它還提供了一個屏幕顯示你的應用程序,以及任何其他運行中的Android應用程序.

為了讓你更容易模型和測試您的應用程序,Android Emulator支持虛擬設備(Android Virtual Device, AVD)配置. AVDs讓你指定在模擬器上運行的Android平台,以及硬件選項和Skin文件. 一旦你的應用程序在模擬器上運行,它可以使用Android平台的服務調用其他應用程序,訪問網絡,播放音頻和視頻,存儲和檢索數據,通知用戶,並提供圖形化的過渡和主題.

模擬器還包括多種調試功能,如控制台,從中可以記錄內核輸出, 模擬應用程序中斷(如到達短信或電話), 以及模擬數據通道的延遲和斷掉造成的影響.

相關文章: 如何在Eclipse創建Android Virtual Devices(AVDs)

android-ophone: 面向 Android 和中国移动Ophone的项目

Android 是用于移动设备的软件堆栈,包括操作系统、中间件和关键应用程序。Android SDK 提供了必需的工具和 API,用于开始开发在 Android 驱动的设备上运行的应用程序。 此网站提供了有关基于 Android 平台的 Google 项目的信息,例如扩展 Android 平台的外部库、Android 应用程序、托管的服务和 API、Android 开发人员竞赛等等。此网站的所有内容均由 Google 为了 Android 开发人员的利益而提供。 如果您要查找关于 Android 的一般信息,请访问 www.android.com 网站。如果您对开发用于 Android 设备的应用程序感兴趣,请访问 Android 开发人员网站,网址是 developer.android.com.



最最新android-scripting發佈! ase_r19.apk

實在快...朋友!

android-scripting(Android設備上的腳本語言)推出了最新版本, ase_r19.apk
, 可以瀏覽android-scripting下載.

相關文章: Android Scripting Environment (ASE) - Android設備上的腳本語言.

2010年3月18日星期四

最新 Android SDK Tools, Revision 5

Android已經於三月發佈SDK Tools, Revision 5版本. 可以從Android Developers網站下載.

安裝程序可以參考另一篇文章"在Linux(ubuntu)上安裝Eclipse + Android SDK"

如果你已經安裝了Android 1.6 SDK或更高版本, 可以使用Android SDK and AVD Manager升級Android SDK, 不需要重新安裝.

2010年3月13日星期六

android:autoLink

文本視圖(TextView)有一個屬性autoLink, 它控制是否對通用資源識別號(Uniform Resource Identifier, URI)及電子郵件地址等提供自動鏈接.

它可以設置為:
none: 不提供自動鏈接
web: 匹配網址
email: 匹配電子郵件地址(注意: 暫時未支持!)
phone: 匹配電話號碼
map: 匹配地圖地址
all: 全部

如果文本視圖(TextView)的內容匹配相應的設定, 當用戶點擊文本視圖, Android會調用相應的活動處理這件事.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:autoLink="web"
android:text="http://androidbiancheng.blogspot.com/"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:autoLink="email"
android:text="androidian@ymail.com"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:autoLink="phone"
android:text="1234-5678"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:autoLink="map"
android:text="1600 Amphitheatre Parkway, Mountain View, CA 94043"
/>
</LinearLayout>

2010年3月11日星期四

android-scripting (ase_r18-1.apk)

實在是太快了!

android-scripting(Android設備上的腳本語言)推出了最新版本, ase_r18-1.apk
, 可以瀏覽android-scripting下載.

相關文章: Android Scripting Environment (ASE) - Android設備上的腳本語言.

2010年3月10日星期三

Android NDK新版本發佈: Android NDK r3

Android Native Development Kit (NDK) 是一套可以讓你在Android應用程序中嵌入原生代碼(native code)的工具.

Android NDK r3可於Android 1.5或更高的目標設備上運行. 除了一些錯誤修復和改進,該版本包含下列新功能:
- 改進工具鏈
- 支援OpenGL ES 2.0
- 簡化名稱

Android NDK r3可於Android developer site下載.

來源: Android Developers Blog: Android NDK r3

2010年3月8日星期一

android-scripting (ase_r17.apk)

android-scripting(Android設備上的腳本語言)推出了最新版本, ase_r17.apk, 可以瀏覽android-scripting下載.

相關文章: Android Scripting Environment (ASE) - Android設備上的腳本語言.



2010年3月5日星期五

Android開發人員實驗室世界巡迴之旅, 香港站

今天, 筆者有機會出席於香港舉行的"Android開發人員實驗室世界巡迴之旅, 香港站". 會上Android人員介紹了移動設備/Android的機遇, Android Market, 一些高級應用程序編程接口(Advanced APIs), SDK 以及 Code Lab.

最重要的是可跟Android開發人員近距離溝通. 的確,這是一個非常好的活動. 希望Google可舉辦更多這類型的活動.