android java问题
Uriuri=data.getData();什么意思?try{1.String[]pojo={MediaStore.Images.Media.DATA};还有这句是什么意...
Uri uri = data.getData();什么意思?
try {
1. String[] pojo = {MediaStore.Images.Media.DATA};还有这句是什么意思?
2. Cursor cursor = managedQuery(uri, pojo, null, null,null);还有这句又是什么意思?
if(cursor!=null)
{
3. ContentResolver cr = this.getContentResolver();这句又是什么意思呢?
int colunm_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
cursor.moveToFirst();
4. String path = cursor.getString(colunm_index);这句又是什么意思??
if(path.endsWith("jpg")||path.endsWith("png"))
{
picPath = path;
Bitmap bitmap = BitmapFactory.decodeStream(cr.openInputStream(uri));
imageView.setImageBitmap(bitmap);
}
求指导 展开
try {
1. String[] pojo = {MediaStore.Images.Media.DATA};还有这句是什么意思?
2. Cursor cursor = managedQuery(uri, pojo, null, null,null);还有这句又是什么意思?
if(cursor!=null)
{
3. ContentResolver cr = this.getContentResolver();这句又是什么意思呢?
int colunm_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
cursor.moveToFirst();
4. String path = cursor.getString(colunm_index);这句又是什么意思??
if(path.endsWith("jpg")||path.endsWith("png"))
{
picPath = path;
Bitmap bitmap = BitmapFactory.decodeStream(cr.openInputStream(uri));
imageView.setImageBitmap(bitmap);
}
求指导 展开
1个回答
展开全部
跟你说简单点吧,surface是用来绘图的,比如照相录像界面,而surfaceView是用来显示surface所绘制的图像,你可以通过SurfaceHolder来访问这个surface,而SurfaceView.getHolder()方法就是用来返回SurfaceHolder对象以便访问surface,而holder.addCallback(this)是因为当前Activity实现了一个接口SurfaceHolder.Callback,所以this也是Callback的一个对象,在surface的各个生命周期(create change destroy)中会调用你重写的那三个方法。 正因为你调用了holder.addCallback(this),就将当前重写的三个方法与surface关联起来了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询