1

簡単な質問ですが、これは私のレイアウトです:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<ImageView
    android:id="@+id/our_photo"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:contentDescription="@string/image_description"/>

<Button
    android:id="@+id/our_button"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/button_photo"
    android:onClick="TakePhoto" />

<Button
    android:id="@+id/load_button"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/show_photo"
    android:onClick="ShowPhoto" />

<TextView
    android:id="@+id/our_text"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/file_directory" />

 </LinearLayout>

そして、これはギャラリーから読み込まれた画像を表示しようとする私のコードです(画像は作成されたばかりなので、存在し、読み込まれます-デバッグモードでは、myBitmapオブジェクトがnullではないことがわかります)が、表示されませんなんでも。レイアウトの欠陥かどうかを確認するために黒いビットマップを作成しようとしましたが、問題なく表示されます。現在、ファイルでは機能しません。

public void ShowPhoto(View v) {
    File imgFile = new  File(mCurrentPhotoPath);
    if(imgFile.exists()){
         //Decode image size
        BitmapFactory.Options o = new BitmapFactory.Options();
        o.inJustDecodeBounds = true;
        try {
            BitmapFactory.decodeStream(new FileInputStream    (imgFile),null,o);
        } catch (FileNotFoundException e1) {
            e1.printStackTrace();
        }

        //The new size we want to scale to
        final int REQUIRED_SIZE_X=240;
        final int REQUIRED_SIZE_Y=400;

        //Find the correct scale value. It should be the power of 2.
        int scale=1;
        while(o.outWidth/scale/2>=REQUIRED_SIZE_X && o.outHeight/ scale/2>=REQUIRED_SIZE_Y)
            scale*=2;

        //Decode with inSampleSize
        BitmapFactory.Options o2 = new BitmapFactory.Options();
        o2.inSampleSize=scale;
        Bitmap myBitmap=null;
        try {
            myBitmap = BitmapFactory.decodeStream(new FileInputStream(imgFile), null, o2);
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }

        Display display = getWindowManager().getDefaultDisplay();
        Point screenSize = new Point();
        display.getSize(screenSize);
        //imageView.setMinimumHeight(screenSize.y/2);
        //imageView.setMinimumWidth(screenSize.x/2);

        imageView.setImageBitmap(Bitmap.createScaledBitmap(myBitmap, screenSize.x/2, screenSize.y/2, false));
    }

デバッグモードでは、例外などはありません。すべてうまくいき、結果はありません。何かご意見は?

4

1 に答える 1

0

を参照するのを忘れているようですImageView

ImageView imageView = (ImageView) findViewById(R.id.our_photo);
于 2013-02-15T09:30:55.470 に答える