对于我的生活,我无法在我的Android模拟器上运行;我是新手,但我认为获取图像输出应该很容易!
我在Eclipse(Android插件)IDE中得到了这两个错误
1.findViewbyId cannot be resolved
2.the method setImageView(String) is undefined for the type catwalk
请参阅以下代码
package com.marueli.catwalk;
import android.app.Activity;
import android.os.Bundle;
import android.widget.ImageView;
public class Catwalk extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ImageView(findViewById);
setImageView("R.drawable.Cat.PNG");
setContentView(R.layout.main);
}
}
这是我在完成几个教程后的第一个代码。谢谢。
此致 利。
答案 0 :(得分:1)
findViewById是一个方法,而R.drawable.cat是一个变量。
试。
package com.marueli.catwalk;
import android.app.Activity;
import android.os.Bundle;
import android.widget.ImageView;
public class Catwalk extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
ImageView imageView = (ImageView) this.findViewById(R.id.image_view_id);
imageView.setImageResource(R.drawable.cat);
}
}
image_view_id是main.xml文件中图像视图的android:id,我假设你的drawable目录中有一个文件名cat.png。