2012-09-18 96 views
2

我有這個活動,其中第一個活動是顯示SD卡中的圖片並將其加載到gridview中。第二項活動是當你點擊gridview中的圖片時,它會顯示圖片的全尺寸。我想要什麼是我的第二個活動,我還想顯示被點擊的圖片的'約會'。如何獲取日期並顯示它。如何獲取日期並顯示它?

這是我的第一個活動。

public class MainActivity extends Activity { 

public class ImageAdapter extends BaseAdapter { 

    private Context mContext; 
    ArrayList<String> itemList = new ArrayList<String>(); 

    public ImageAdapter(Context c) { 
     mContext = c; 
    } 

    void add(String path) { 
     itemList.add(path); 
    } 

    @Override 
    public int getCount() { 
     return itemList.size(); 
    } 

    @Override 
    public Object getItem(int arg0) { 
     // TODO Auto-generated method stub 
     return null; 
    } 

    @Override 
    public long getItemId(int position) { 
     // TODO Auto-generated method stub 
     return 0; 
    } 

    @Override 
    public View getView(int position, View convertView, ViewGroup parent) { 
     ImageView imageView; 
     if (convertView == null) { // if it's not recycled, initialize some 
            // attributes 
      imageView = new ImageView(mContext); 
      imageView.setLayoutParams(new GridView.LayoutParams(220, 220)); 
      imageView.setScaleType(ImageView.ScaleType.CENTER_CROP); 
      imageView.setPadding(8, 8, 8, 8); 
     } else { 
      imageView = (ImageView) convertView; 
     } 

     Bitmap bm = decodeSampledBitmapFromUri(itemList.get(position), 220, 
       220); 

     imageView.setImageBitmap(bm); 
     return imageView; 
    } 

    public Bitmap decodeSampledBitmapFromUri(String path, int reqWidth, 
      int reqHeight) { 

     Bitmap bm = null; 
     // First decode with inJustDecodeBounds=true to check dimensions 
     final BitmapFactory.Options options = new BitmapFactory.Options(); 
     options.inJustDecodeBounds = true; 
     BitmapFactory.decodeFile(path, options); 

     // Calculate inSampleSize 
     options.inSampleSize = calculateInSampleSize(options, reqWidth, 
       reqHeight); 

     // Decode bitmap with inSampleSize set 
     options.inJustDecodeBounds = false; 
     bm = BitmapFactory.decodeFile(path, options); 

     return bm; 
    } 

    public int calculateInSampleSize(

    BitmapFactory.Options options, int reqWidth, int reqHeight) { 
     // Raw height and width of image 
     final int height = options.outHeight; 
     final int width = options.outWidth; 
     int inSampleSize = 1; 

     if (height > reqHeight || width > reqWidth) { 
      if (width > height) { 
       inSampleSize = Math.round((float) height 
         /(float) reqHeight); 
      } else { 
       inSampleSize = Math.round((float) width/(float) reqWidth); 
      } 
     } 

     return inSampleSize; 
    } 

} 

ImageAdapter myImageAdapter; 

@Override 
public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 

    GridView gridview = (GridView) findViewById(R.id.gridview); 
    myImageAdapter = new ImageAdapter(this); 
    gridview.setAdapter(myImageAdapter); 

    String ExternalStorageDirectoryPath = Environment 
      .getExternalStorageDirectory().getAbsolutePath(); 

    String targetPath = ExternalStorageDirectoryPath + "/test/"; 

    Toast.makeText(getApplicationContext(), targetPath, Toast.LENGTH_LONG) 
      .show(); 
    File targetDirector = new File(targetPath); 

    File[] files = targetDirector.listFiles(); 
    for (File file : files) { 
     myImageAdapter.add(file.getAbsolutePath()); 
    } 
} 

gridview.setOnItemClickListener(new OnItemClickListener() { 
      public void onItemClick(AdapterView<?> parent, View v, 
        int position, long id) { 

ImageView img = myImageAdapter.getView(position, v, parent); 
       img.buildDrawingCache(); 
       Bitmap bmap = img.getDrawingCache(); 
       Intent intent = new Intent(MainActivity.this, 
         Imageviewer.class); 
       Bundle bundle = new Bundle(); 
        String par=myimageadpter.getpath(position); 
          bundle.putString("imagepath", par); 
       intent.putExtras(bundle); 
       startActivityForResult(intent, 0); 

      } 
     }); 

這裏是第二個活動

public class ImageViewer extends Activity { 
@Override 
public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 


    Bundle bundle = this.getIntent().getExtras(); 

    String s=bundle.getString("imagepath"); 
    Bitmap Imagefrompath = BitmapFactory.decodeFile(s); 
      ImageView img=(ImageView) findViewById(R.id.imageView1); 
      img.setImageBitmap(Imagefrompath); 


} 

} 

回答

6
  1. 檢查,如果該文件在您的路徑中,
  2. 嘗試獲取文件創建日期(如果可用),
  3. 如果創建日期不可用,然後去上次修改日期。

File file = new File(filePath); 
if(file.exists()) //Extra check, Just to validate the given path 
{ 
    ExifInterface intf = null; 
    try 
    { 
     intf = new ExifInterface(filePath); 
     if(intf != null) 
     { 
      String dateString = intf.getAttribute(ExifInterface.TAG_DATETIME); 
      Log.i("Dated : "+ dateString.toString()); //Dispaly dateString. You can do/use it your own way   
     } 
    } 
    catch 
    { 
    } 
    if(intf == null) 
    { 
     Date lastModDate = new Date(file.lastModified()); 
     Log.i("Dated : "+ lastModDate.toString());//Dispaly lastModDate. You can do/use it your own way 
    } 
} 
+0

雖然你的答案看起來很有希望,你顯示'lastModified'而不是當它被採取.. – Doomsknight

+0

是的謝謝,更新了答案 – Sami

相關問題