读书人

Android 调用系统 相本代码

发布时间: 2012-12-17 09:31:40 作者: rapoo

Android 调用系统 相册代码
Button button = (Button) this.findViewById(R.id.huangliao);

button.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
String value = String.valueOf(Environment.getExternalStorageDirectory()+"/DCIM/Camera");
File file = new File(value);
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), "image/*");
startActivity(intent);
}
});

读书人网 >Android

热点推荐