--- android/Side9/src/dk/thoerup/side9/PictureOverview.java 2010/06/03 09:31:00 791 +++ android/Side9/src/dk/thoerup/side9/PictureOverview.java 2010/06/03 09:34:14 792 @@ -4,7 +4,6 @@ import android.content.Intent; import android.net.Uri; import android.os.Bundle; -import android.util.Log; import android.view.View; import android.widget.AdapterView; import android.widget.GridView; @@ -27,13 +26,10 @@ gridview.setOnItemClickListener(new OnItemClickListener() { public void onItemClick(AdapterView parent, View v, int position, long id) { String uri = "file://" + images.getImagePath(position); - Log.i("VIEW", "URI=" + uri); Intent i = new Intent(Intent.ACTION_VIEW); - i.setDataAndType(Uri.parse(uri), "image/png"); + i.setDataAndType(Uri.parse(uri), "image/jpeg"); - - Log.i("VIEW", "" + position + " : " + images.getImagePath(position) + " : " + i.getAction() + " / " + i.getData()); startActivity(i); } });