0

この素晴らしい記事に続いて使用する画像をダウンロードしました。私が使用している私自身の画像は、300x400のグーグルマップの静止画像です。いくつかの設定をいじって、画面全体に表示されるように拡張しましたが、非常にぼやけて見えます。

<ImageView
    android:id="@+id/image"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_x="0dp"
    android:layout_y="0dp"
    android:adjustViewBounds="true"
    android:clickable="false"
    android:gravity="center_vertical"
    android:longClickable="false"
    android:scaleType="fitCenter" />

それは私が画面のxmlレイアウトに持っているものです。これは一般的な問題ですか?よく検索しましたが、答えが見つかりませんでした。300x400はAndroidに適した解像度ではありませんか?

4

2 に答える 2

1

300x400はAndroidに適した解像度ではありませんか?

これは、元の画像の向きと、レイアウトやデバイスの表示など、他のいくつかの要素によって異なります。または、次のコードを試して画像をダウンロードすることもできます。これは私にとっては問題なく機能します。

追加することを忘れないでください

    <uses-permission  android:name="android.permission.INTERNET"></uses-permission>

マニフェストに

    public class MainActivity extends Activity {

private Button get;
private ImageView pic;
private static final String SRC = "http://www.allindiaflorist.com/imgs/arrangemen4.jpg";

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    get = (Button)findViewById(R.id.button1);
    pic = (ImageView)findViewById(R.id.imageView1);

    get.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {

            pic.setImageBitmap(getBitmapFromURL(SRC));

        }
    });

}

 public static Bitmap getBitmapFromURL(String src) {
        try {
            URL url = new URL(src);
            HttpURLConnection connection = (HttpURLConnection) url
                    .openConnection();
            connection.setDoInput(true);
            connection.connect();
            InputStream input = connection.getInputStream();
            Bitmap myBitmap = BitmapFactory.decodeStream(input);

            return myBitmap;
        } catch (IOException e) {
            e.printStackTrace();
            Log.e("getBmpFromUrl error: ", e.getMessage().toString());
            return null;
        }
    }

    }

ここに画像の説明を入力してください

于 2013-02-18T22:00:39.517 に答える
1

それらが低い理由を見つけました。イメージローダークラスには圧縮が組み込まれていました。

//decodes image and scales it to reduce memory consumption
private Bitmap decodeFile(File f){
    try {
        //decode image size
        BitmapFactory.Options o = new BitmapFactory.Options();
        o.inJustDecodeBounds = true;
        BitmapFactory.decodeStream(new FileInputStream(f),null,o);

        //Find the correct scale value. It should be the power of 2.
        final int REQUIRED_SIZE=70;
        int width_tmp=o.outWidth, height_tmp=o.outHeight;
        int scale=1;
        while(true){
            if(width_tmp/2<REQUIRED_SIZE || height_tmp/2<REQUIRED_SIZE)
                break;
            width_tmp/=2;
            height_tmp/=2;
            scale*=2;
        }

        //decode with inSampleSize
        BitmapFactory.Options o2 = new BitmapFactory.Options();
        o2.inSampleSize=scale;
        return BitmapFactory.decodeStream(new FileInputStream(f), null, o2);
    } catch (FileNotFoundException e) {}
    return null;
}

したがって、この部分を削除するだけで、次のようになります。

//decodes image and scales it to reduce memory consumption
private Bitmap decodeFile(File f){

  try {
    return BitmapFactory.decodeStream(new FileInputStream(f));
} catch (FileNotFoundException e) {
    e.printStackTrace();
}
return null;

}

透き通った画像。

于 2013-02-18T22:48:11.863 に答える