原创 Android 體系結構介紹

Android作爲一個移動設備的平臺,其軟件層次結構包括了一個操作系統(OS),中間件(MiddleWare)和應用程序(Application)。根據Android的軟件框圖,其軟件層次結構自下而上分爲以下幾個層次: 第一、操作系統層(O

原创 我的友情鏈接

51CTO博客開發天安信通

原创 Android無線調試——拋開USB數據線

開發Android的朋友都知道,真機調試需要把手機與PC相連,然後把應用部署到真機上進行安裝和調試。長長的USB線顯得很麻煩,而且如果需要USB接口與其他設備連接的話顯得很不方便。今天介紹一種不通過USB線就可以進行真機調試的方法。首先讓手

原创 打開android默認瀏覽器

Intent intent = new Intent("android.intent.action.VIEW"); Uri content_url = Uri.parse("http://www.cnblogs.com");

原创 打開android手機照相機

Intent intent = new Intent("android.media.action.IMAGE_CAPTURE"); intent.putExtra(MediaStore.EXTRA_OUTPUT,Uri.fromFile(n

原创 android開發中語音採集爲一個文件及播放MediaRecorder,MediaPlayer

package com.androidbook.multimedia; import android.app.Activity; import android.content.ContentValues; import android.c

原创 打開android系統短信

Intent intent = new Intent(Intent.ACTION_MAIN); intent.addCategory(Intent.CATEGORY_DEFAULT); intent.setType("vnd.android

原创 打開android 系統聯繫人

2.0及以上版本聯繫人API發生了變化,由原來的Contacts變成了ContactsContract privatestaticfinalint PICK_CONTACT = 3; Intent intent = new Intent(I

原创 Android 體系結構介紹

Android作爲一個移動設備的平臺,其軟件層次結構包括了一個操作系統(OS),中間件(MiddleWare)和應用程序(Application)。根據Android的軟件框圖,其軟件層次結構自下而上分爲以下幾個層次: 第一、操作系統層(O

原创 androd開發中EditText的setOnKeyListener事件

package irdc.practice1;import irdc.practice1.R;import android.app.Activity;import android.os.Bundle;import android.view.

原创 我的友情鏈接

51CTO博客開發天安信通