我正在尝试在android中显示图像。过程是我从网上下载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);
}
答案 0 :(得分:3)
使用Android智能图像视图。这是使用URL显示图像的最简单方法。这是link。
答案 1 :(得分:0)
清理你的项目。有时它不会使用R.java文件。
答案 2 :(得分:0)
使用Project清除项目 - &gt;清洁。如果它仍然存在,运行项目,它们通常会消失。