我在使用id
获取imageview控件时遇到错误错误是,
12-13 08:06:56.914: E/AndroidRuntime(1967): java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=0, result=-1, data=Intent { dat=content://media/external/images/media/26 }} to activity {com.example.hakslogin/com.example.hakslogin.QuestionActivityDynamic}: java.lang.ClassCastException: android.widget.Button cannot be cast to android.widget.ImageView
获取它的代码是,
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (resultCode == RESULT_OK) {
Uri selectedImageUri = data.getData();
selectedImagePath = getPath(selectedImageUri);
System.out.println("Image Path : " + selectedImagePath);
String imgid=String.valueOf(requestCode);
img = (ImageView) findViewById(requestCode);
img.setImageURI(selectedImageUri);
}
我这里没有提到动态创建imageview的代码,但我的imageview id是0。
在线获取错误,
img = (ImageView) findViewById(requestCode);
希望你的建议
答案 0 :(得分:1)
.ClassCastException:android.widget.Button无法强制转换为android.widget.ImageView 您正在将名为img的Button投射到图像视图
尝试将set id重命名为另一个int