0

私はプログラミングにかなり慣れていません。私の唯一の経験は、非常に軽いC#とjavascriptです。

写真とネットからのデータを表示するだけのシンプルなAndroidアプリを作りたいのですが、画像を表示するだけで問題が発生します(まだ何も試していません)。SOとWebでコード例を検索しましたが、機能させることができません。

これが私のAndroidManifest.xmlです

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="my.test"
    android:versionCode="1"
    android:versionName="1.0" >

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

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name=".TestActivity"
            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>

</manifest>

と私のmain.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/hello" />



<ImageView
    android:id="@+id/imageView1"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

</LinearLayout>

そして私の唯一の活動

package my.test;

import java.io.InputStream;
import java.net.URL;

import android.app.Activity;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.widget.ImageView;

public class TestActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    ImageView imgView =(ImageView)findViewById(R.id.imageView1);
    Drawable drawable = LoadImageFromWebOperations("http://www.androidpeople.com/wp-content/uploads/2010/03/android.png");
    imgView.setImageDrawable(drawable);
    }
    private Drawable LoadImageFromWebOperations(String url)
    {
        try
        {
            InputStream is = (InputStream) new URL(url).getContent();
            Drawable d = Drawable.createFromStream(is, "src name");
            return d;
        }catch (Exception e) {
            System.out.println("Exc="+e);
            return null;
        }
    }

}

AVDと私の電話の両方を使用して他の例を試しましたが、同じ結果が得られました:空白の画面。私は何が間違っているのですか?

4

5 に答える 5

1
public Bitmap FetchImage(URL url) {
    try {
        URLConnection conn = url.openConnection();
        conn.connect();
        final BufferedInputStream bis = new BufferedInputStream(conn.getInputStream());
        final Bitmap bm = BitmapFactory.decodeStream(bis);
        bis.close();
        return bm;
    } catch (IOException e) {}
    return null;
}

これで、ImageViewのsetImageBitmapメソッドを使用して画像を表示する必要があります。AsyncTaskでダウンロード部分を実行していることを確認してください。

以下のスニペットが役立ちます

DownloadHelper.java

public interface DownloadHelper
{
    public void OnSucess(Bitmap bitmap);
    public void OnFailure(String response);
}

MainActivity.java

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

        DownloadHelper downloadHelper = new DownloadHelper()
        {
            @Override
            public void OnSucess(Bitmap bitmap)
            {
                ImageView imageView=(ImageView)findViewById(R.id.imageView);
                imageView.setImageBitmap(bitmap);
            }

            @Override
            public void OnFailure(String response)
            {
                Toast.makeText(context, response, Toast.LENGTH_LONG).show();
            }
        };
        new MyTask(this,downloadHelper).execute("image url");
    }

MyTask.java

public class DownloadTask extends AsyncTask<String, Integer, Object>
{
    private Context context;
    private DownloadHelper downloadHelper;
    private ProgressDialog dialog;


    public DownloadTask(Context context,DownloadHelper downloadHelper)
    {
        this.context = context;

    }

    @Override
    protected void onPreExecute()
    {
        dialog = new ProgressDialog(context);
        dialog.setTitle("Please Wait");
        dialog.setMessage("Fetching Data!!");
        dialog.setCancelable(false);
        dialog.show();
        super.onPreExecute();
    }

    @Override
    protected Object doInBackground(String... params)
    {
        URL aURL = new URL(myRemoteImages[position]);
        URLConnection conn = aURL.openConnection();
        conn.connect();
        InputStream is = conn.getInputStream();

        BufferedInputStream bis = new BufferedInputStream(is);
        /* Decode url-data to a bitmap. */
        Bitmap bm = BitmapFactory.decodeStream(bis);
        bis.close();
        is.close();
        return bm;
    }

    @Override
    protected void onPostExecute(Object result)
    {
        dialog.dismiss();
        if (result != null)
        {
            downloadHelper.OnSucess((Bitmap)result);
        } 
        else
        {
            downloadHelper.OnFailure("Error in Downloading Data!!");
        }
        super.onPostExecute(result);
    }
}
于 2012-06-05T13:38:05.970 に答える
0

試みることができます

imgView.setImageURI(Uri.parse("http://www.androidpeople.com/wp-content/uploads/2010/03/android.png"));

またはdrwaableが必要な場合

http://www.dreamincode.net/code/snippet4724.htm

于 2012-06-05T13:36:33.660 に答える
0

許可を与える

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

マニフェストで、モバイルがネットに接続されているかどうかを確認します。あなたのコードは私にとって適切に機能します。

于 2012-06-05T13:50:13.903 に答える
0

私がグーグルで考えることができるすべてを試した後、私は最新のものの代わりにアンドロイドバージョン2.1を使用してコーディングしようと決心しました、そしてあなたはそれがすべて魔法のように機能することを知っていますか?私は自分の質問の例を成功裏に試しましたが、回答の1つか2つの例も成功しました。助けてくれたすべての人に感謝します。

ただし、4.0.3ではなく2.1でビルドしたときに、一見有効なコードが機能する理由を誰かが共有できれば、すばらしいと思います。ところで、4.0.3を実行している私の電話でテストしました

于 2012-06-07T16:15:14.783 に答える
-2

次のように、ImageViewの代わりにWebViewを使用します。

html = "<html><img src=\"" + imageUrl
                        + "\"></html>";
final WebView webView = (WebView) view
                    .findViewById(R.id.yourWebView);
wvImageView.getSettings().setJavaScriptEnabled(true);
wvImageView.loadDataWithBaseURL("", html, "text/html", "utf-8", "");
This should display your image on WebView. If you want to provide zooming facility, try this:

webView.getSettings().setSupportZoom(true);
webView.getSettings().setBuiltInZoomControls(true);

これはあなたの問題を解決するはずです:)

于 2012-06-05T13:33:31.393 に答える