android應用中使用相機功能,大體有兩種方式實現:html
若是須要拍照功能,則須要在AndroidManifest.xml文件中添加權限:android
<uses-permission android:name="android.permission.CAMERA"/>
這是第一種方式
在啓動相機前先指定好圖片的文件位置,通知intent,同時也保留在成員變量中。而後在函數中,能夠直接打開該文件app
private static final int CAMERA_REQUESTCODE=1; String sFileFullPath = Environment.getExternalStorageDirectory().getAbsolutePath() + "/test.jpg"; Log.e("onNavi","file: "+sFileFullPath); File file = new File(sFileFullPath); Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(file)); startActivityForResult(intent, CAMERA_REQUESTCODE);
獲取返回值ide
protected void onActivityResult(int requestCode, int resultCode, Intent data) { if (requestCode == CAMERA_REQUESTCODE) { if (resultCode == RESULT_OK) { ////Bitmap bmPhoto = (Bitmap) data.getExtras().get("data"); // You can set bitmap to ImageView here 這裏能夠得到相片的縮略圖 } } }
第二種方式:自定製camera
參考連接, 該功能我未實現
Android 自定義camera函數
private static final int REQUESTCODE_PICK=2; Intent mIntent = new Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI); startActivityForResult(mIntent,REQUESTCODE_PICK);
在onActivityResult中得到選擇的圖片.net
if(requestCode == REQUESTCODE_PICK) { Uri selectedImage = data.getData(); String[] filePathColumn = { MediaStore.Images.Media.DATA }; Cursor cursor = getContentResolver().query(selectedImage, filePathColumn, null, null, null); cursor.moveToFirst(); int columnIndex = cursor.getColumnIndex(filePathColumn[0]); String picturePath = cursor.getString(columnIndex); cursor.close(); Log.e(TAG,"Select image "+picturePath); }
android.intent.action.CALL
呼叫指定的電話號碼。code
Intent intent=new Intent(); intent.setAction(Intent.ACTION_CALL); intent.setData(Uri.parse("tel:10086"); startActivity(intent);
String: action.intent.action.DIAL
調用撥號面板
Intent intent=new Intent();
intent.setAction(Intent.ACTION_DIAL);
intent.setData(Uri.parse("tel:10086");
startActivity(intent);xml
String: andriod.intent.action.ALL_APPS
列出全部的應用。htm
String:android.intent.action.CALL_PRIVILEGED
調用skype的actionblog
Intent intent = newIntent("android.intent.action.CALL_PRIVILEGED"); intent.setClassName("com.skype.raider", "com.skype.raider.Main"); intent.setData(Uri.parse("tel:" + phone)); startActivity(intent);
String: android.action.intent.CALL_BUTTON.
至關於按「撥號」鍵。
Intent intent = new Intent(Intent.ACTION_CALL_BUTTON);
startActivity(intent);
String: android.provider.Telephony.SMS_RECEIVED
接收短信的action
String: android.intent.action.GET_CONTENT
容許用戶選擇特殊種類的數據,並返回(特殊種類的數據:照一張相片或錄一段音)
String: android.intent.action.BATTERY_LOW
表示電池電量低
String: android.intent.action.Send
發送郵件的action
當屏幕超時進行鎖屏時,當用戶按下電源按鈕,長按或短按(無論有沒跳出話框),進行鎖屏時,android系統都會廣播此Action消息
String: android.intent.action.MAIN
標識Activity爲一個程序的開始。
插上外部電源時發出的廣播
已斷開外部電源鏈接時發出的廣播
Stirng:android.intent.action.ANSWER
處理呼入的電話。
String: android.intent.action.BUG_REPORT
顯示Dug報告。
action的操做有不少,須要的話,繼續百度。