0

重複の可能性:
Android でファイルをダウンロードし、ProgressDialog で進行状況を表示する

ウェブサイトから画像をロードしようとしていますが、次の質問を見ました: Android は URL からビットマップにロードされますが、この行でアプリケーションがクラッシュします: conn.connect();

public class HTTPTest extends Activity {

ImageView imView;
String imageUrl = "http://api.androidhive.info/images/sample.jpg";

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle icicle) {
    super.onCreate(icicle);
    setContentView(R.layout.main);

    Button bt3 = (Button) findViewById(R.id.get_imagebt);
    bt3.setOnClickListener(getImgListener);
    imView = (ImageView) findViewById(R.id.imview);
}

View.OnClickListener getImgListener = new View.OnClickListener() {

    @Override
    public void onClick(View view) {
        // TODO Auto-generated method stub
        downloadFile(imageUrl);
    }
};

Bitmap bmImg;

void downloadFile(String fileUrl) {
    URL myFileUrl = null;
    try {
        myFileUrl = new URL(fileUrl);
    } catch (MalformedURLException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    try {
        HttpURLConnection conn = (HttpURLConnection) myFileUrl
                .openConnection();
        conn.setDoInput(true);
        conn.connect();
        InputStream is = conn.getInputStream();

        bmImg = BitmapFactory.decodeStream(is);
        imView.setImageBitmap(bmImg);
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}

main.xml :

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView  
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Hello World, HTTPImage load test"
/>
    <Button 
android:id="@+id/get_imagebt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Get an image"
android:layout_gravity="center"
/>  
<ImageView 
android:id="@+id/imview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
/>

私のマニフェスト:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.androidtest"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="16" />


<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.androidtest.HTTPTest"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<!-- Permission to write to external storage -->
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
</manifest>

助けてくれてありがとう!

ジェルマン。

4

2 に答える 2

3

すべてのネットワークリクエストを別のスレッドで実行する必要があります(つまり、UIスレッドでは実行しないでください)。実際、Androidはあなたにこれをさせます。そうしないと、応答を待っている間、UIがロックされます。downloadFile()メソッドを次のように変更します。AsyncTaskは、コードを別のスレッドで実行します。実行に時間がかかるタスクの良い習慣。

void downloadFile(String fileUrl) {

    AsyncTask<String, Object, String> task = new AsyncTask<String, Object, String>() {

        @Override
        protected String doInBackground(String... params) {
            URL myFileUrl = null;
            try {
                myFileUrl = new URL(params[0]);
            } catch (MalformedURLException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            try {
                HttpURLConnection conn = (HttpURLConnection) myFileUrl
                        .openConnection();
                conn.setDoInput(true);
                conn.connect();
                InputStream is = conn.getInputStream();

                bmImg = BitmapFactory.decodeStream(is);
                imView.setImageBitmap(bmImg);
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

            return null;
        }
    };
    task.execute(fileUrl);

}
于 2012-11-19T23:20:26.723 に答える
2

しかし、私のアプリケーションはこの行でクラッシュします:conn.connect();

Android 3 以降では、メイン スレッドの潜在的に低速なネットワーク操作を実行できません。

ユーザー エクスペリエンスの速度が低下しないように、AsyncTask でイメージをダウンロードします。メソッドを AsyncTaskdownloadFile()のメソッドに移動するだけです。doInBackground()

詳細な仕様が必要な場合は、ここに非常に広範な回答があります。


追加
ジンボを使用doInBackground()すると、別のスレッドからUIにアクセスしようとするとエラーが発生する可能性がありますが、これはできません。onPostExecute()UI スレッドにアクセスできるため、AsyncTask でオーバーライドしてビューを操作できます。

@Override
protected void onPostExecute(String unused) {
    imView.setImageBitmap(bmImg);
}
于 2012-11-19T23:14:35.870 に答える