我试图清理,打开和关闭Eclipse,仔细检查id,仔细检查R.java,我无法理解为什么会出现在行中
harryImageView = findViewById(R.id.harry);
有哪些可行的解决方案?
我的代码是:
package com.example.imageview;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
public class ImageView extends ActionBarActivity {
private ImageView harryImageView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.image_view);
harryImageView = findViewById(R.id.harry);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.image_view, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
答案 0 :(得分:0)
findViewById(R.id.harry)
返回一个View对象,它无法识别它返回的视图的类型。您需要执行以下操作:
harryImageView = (ImageView) findViewById(R.id.harry);
这样,您可以告诉程序将返回的View视为ImageView对象。
答案 1 :(得分:0)
这里的问题是,您的课程被称为ImageView
,这就是您在演员阵容中遇到问题的原因。
尝试以下方法:
android.widget.ImageView harryImageView;
//...
harryImageView = (android.widget.ImageView) findViewById(R.id.harry);
希望有所帮助
答案 2 :(得分:0)
如果(ImageView)不起作用,请尝试以下代码
(findViewById(R.id.harry) as ImageView)