編輯:Android開發實例
以下列舉了一些在Android中常用的Intent啟動服務,當執行startActivity時候,Android將會根據Intent綁定的信息尋找最合適的啟動程序來接應,並執行程序以完成意圖的實現。
打開浏覽器顯示網頁:
Uri uri = Uri.parse("http://www.fengfly.com");
Intent intent = new Intent(Intent.ACTION_VIEW,uri);
startActivintenty(intent);
由地圖參數顯示地圖:
Uri uri = Uri.parse("geo:38.899533,-77.036476");
Intent intent = new Intent(Intent.Action_VIEW,uri);
startActivintenty(intent);
撥打電話,調用撥號程序:
Uri uri = Uri.parse("tel:13800138000");
Intent intent = new Intent(Intent.ACTION_DIAL, uri);
startActivintenty(intent);
調用發送短信的程序發送SMS/MMS
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.putExtra("sms_body", "FENGFLY.COM");
intent.setType("vnd.android-dir/mms-sms");
startActivintenty(intent);
調用短信程序發送短信
Uri uri = Uri.parse("smsto:13800138000");
Intent intent = new Intent(Intent.ACTION_SENDTO, uri);
intent.putExtra("sms_body", "FENGFLY.COM");
startActivintenty(intent);
調用彩信服務發送彩信
Uri uri = Uri.parse("content://media/external/images/media/exp");
Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra("sms_body", "FENGFLY.COM");
intent.putExtra(Intent.EXTRA_STREAM, uri);
intent.setType("image/png");
startActivintenty(intent);
啟動郵件應用程序發送Email
Uri uri = Uri.parse("mailto:[email protected]");
Intent intent = new Intent(Intent.ACTION_SENDTO, uri);
startActivintenty(intent);
Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_EMAIL, "[email protected]");
intent.putExtra(Intent.EXTRA_TEXT, "郵件內容。");
intent.setType("text/plain");
startActivintenty(Intent.createChooser(intent, "Choose Email Client"));
Intent intent=new Intent(Intent.ACTION_SEND);
String[] tos={"[email protected]"};
String[] ccs={"[email protected]"};
intent.putExtra(Intent.EXTRA_EMAIL, tos);
intent.putExtra(Intent.EXTRA_CC, ccs);
intent.putExtra(Intent.EXTRA_TEXT, "郵件內容。");
intent.putExtra(Intent.EXTRA_SUBJECT, "郵件主題");
intent.setType("message/rfc822");
startActivintenty(Intent.createChooser(intent, "Choose Email Client"));
添加郵件附件內容
Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_SUBJECT, "主題");
intent.putExtra(Intent.EXTRA_STREAM, "file:///sdcard/fengfly.mp3");
sendIntent.setType("audio/mp3");
startActivintenty(Intent.createChooser(intent, "Choose Email Client"));
播放mp4多媒體文件
Intent intent = new Intent(Intent.ACTION_VIEW);
Uri uri = Uri.parse("file:///sdcard/fengfly.mp3");
intent.setDataAndType(uri, "audio/mp3");
startActivintenty(intent);
介紹 最近用淘寶客戶端的時候,編輯地址的時候有個地區選擇的功能。看上面的效果覺得挺酷,滾動的時候,是最後一個從下面飛上來挨著前一個。就自己鼓搗一個
Android應用程序可以在許多不同地區的許多設備上運行。為了使應用程序更具交互性,應用程序應該處理以適合應用程序將要使用的語言環境方面的文字,數字,文件等。在本章中,我
本文實例講述了Android中Market的Loading效果實現方法。分享給大家供大家參考。具體如下: 在Android中,要實現Loading效果,一般情況下
JSON代表JavaScript對象符號。它是一個獨立的數據交換格式,是XML的最佳替代品。本章介紹了如何解析JSON文件,並從中提取所需的信息。Android提供了四個