1
A
回答
0
對於[從相機]設置拍攝的圖像圖像視圖:
Intent getImageIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(getImageIntent, 1);
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == 1) {
if (resultCode == Activity.RESULT_OK) {
imageCounter++;
takePicture(data);
} else if (resultCode == Activity.RESULT_CANCELED) {
}
}
}
protected void takePicture(Intent data) {
Bundle b = data.getExtras();
Bitmap pic = (Bitmap) b.get("data");
if (pic != null) {
ImageView img = new ImageView(this);
((LinearLayout) findViewById(R.id.captured_image_layout))
.addView(img);
img.setLayoutParams(new LinearLayout.LayoutParams(0,
LinearLayout.LayoutParams.WRAP_CONTENT, 0.33f));
img.setPadding(5, 5, 5, 5);
img.setImageBitmap(pic);
}
}
相關問題
- 1. 如何保存捕獲的圖像中的文檔目錄
- 2. 複製圖像並將其保存到其他目錄
- 3. 將攝像頭捕獲的圖像保存到ios的文檔目錄中
- 4. Android。如何從相機捕捉圖像並將其保存到imageView?
- 5. 如何將捕獲的圖像保存到圖庫
- 6. 問題捕獲圖像並保存到一個ImageView的
- 7. Phonegap在www目錄中保存捕獲的圖像
- 8. 如何捕獲圖像,並將其保存在SD卡
- 9. 如何將ImageView保存爲圖像?
- 10. 如何捕獲圖像並將其保存在存儲器中並在ImageView中顯示?
- 11. 如何在運行時在imageview中獲取圖像並將其與其他存儲的圖像進行比較?
- 12. 如何在Python(PIL)中將所有圖像調整到其他目錄後保存大量圖像?
- 13. Android:將圖像保存到目錄
- 14. 將圖像保存到目錄c#
- 15. 從URL保存圖像,然後將其保存到一個目錄下的PHP
- 16. Android:如何將圖像保存到緩存目錄?
- 17. 如何將捕獲的圖像保存到Android手機圖庫中?
- 18. 使用j2me將捕獲的圖像保存到SD卡中
- 19. 捕獲圖像並將其保存在內部存儲器上
- 20. 捕獲圖像並將其傳輸到其他活動
- 21. 在android中捕獲的圖像保存
- 22. 將圖片框中的圖像保存到特定目錄
- 23. 如何在imageview中保存圖像?
- 24. 捕獲/保存JPanel圖像
- 25. 將捕獲的圖像保存到NSDocument目錄路徑並加載到集合視圖中
- 26. IOS圖像捕獲並保存到UIImageView
- 27. 從ImageView中保存圖像
- 28. 如何將捕獲的圖像轉換爲GIF並保存到SD卡中android
- 29. 如何通過url將圖像保存到目錄
- 30. 如何將圖像保存到iphone目錄並檢索它?
謝謝shubham :)我真的很感激它!它的工作原理:D非常感謝你:) –