调用手机相机
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? android調用手機相機
這個demo只是調用相機別的功能沒有,
public class MainActivity extends Activity {private Button btn;private static final int TAKE_PICTURE = 0x000001;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);btn = (Button) findViewById(R.id.btn);btn.setOnClickListener(new OnClickListener() {@Overridepublic void onClick(View v) {photo(); }private void photo() {Intent openCamerIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);startActivityForResult(openCamerIntent, TAKE_PICTURE);}});}}
?
這個是15年寫的,沒有處理android6.0權限以及android 7.0選擇圖庫的存儲問題,這里我給出一個demo 里面寫到了android相機相冊
?
demo地址
?
?
?
總結
- 上一篇: sha256获取
- 下一篇: Android开发遇到eclipse运行