1

アンドロイドで画像を表示しようとしています。プロセスは、ネットから1つの画像をダウンロードして画面に表示しようとしていますが、私が直面している問題は、コンテンツビューと画像を設定できないアクティビティ画面にあります。 。以下はコードです:

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="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_launcher" />

</LinearLayout>

アクティビティ画面:

public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.);---->Here i cant set as main

        Bitmap bitmap = DownloadImage(
                "http://www.allindiaflorist.com/imgs/arrangemen4.jpg");
            ImageView img = (ImageView) findViewById(R.id.);  //here i cant set the image id
            img.setImageBitmap(bitmap);

    }
4

3 に答える 3

3

Android SmartImageViewを使用します。これは、URLを使用して画像を表示する最も簡単な方法です。ここにリンクがあります。

于 2012-04-26T04:13:53.807 に答える
0

プロジェクトをクリーンアップします。R.javaファイルを使用しない場合もあります。

于 2012-04-26T04:06:54.987 に答える
0

[プロジェクト]->[クリーン]を使用してプロジェクトをクリーンアップするだけです。それがまだ存在する場合は、プロジェクトを実行すると、通常は消えます。

于 2012-04-26T04:22:19.640 に答える