首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

Android 调用系统 相本代码

2012-12-17 
Android 调用系统 相册代码 Button button (Button) this.findViewById(R.id.huangliao)button.setOnCl

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);
   }
  });

热点排行