eclipse进行Android开发学习时:setImageResource(R.drawable.helloworld) 运行后却显示的是icon
答案:6 悬赏:40 手机版
解决时间 2021-04-26 18:19
- 提问者网友:鼻尖触碰
- 2021-04-26 13:19
eclipse进行Android开发学习时:setImageResource(R.drawable.helloworld) 运行后却显示的是icon
最佳答案
- 五星知识达人网友:持酒劝斜阳
- 2021-04-26 14:22
我试了一下可以啊,会不会是你的图片不好?换一张试试。
全部回答
- 1楼网友:青灯有味
- 2021-04-26 19:13
换一个分辨率试一下
- 2楼网友:胯下狙击手
- 2021-04-26 17:41
很有可能是你的图片命名的问题,命名为:小写字母+数字
否则,不能被识别
否则,不能被识别
- 3楼网友:詩光轨車
- 2021-04-26 17:01
不知道你是不是直接把图拖到drawable的文件夹,如果你用eclipse,你需要import图片到文件夹,然後可能需要重新clean一下以生成新的R文件,这样才能在R文件注册这个资源。
- 4楼网友:胯下狙击手
- 2021-04-26 15:30
LinearLayout mLinearLayout;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Create a LinearLayout in which to add the ImageView
mLinearLayout = new LinearLayout(this);
ImageView HelloWorldImageView = new ImageView(this);
HelloWorldImageView.setImageResource(R.drawable.helloworld);
}
}
这样应该可以
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Create a LinearLayout in which to add the ImageView
mLinearLayout = new LinearLayout(this);
ImageView HelloWorldImageView = new ImageView(this);
HelloWorldImageView.setImageResource(R.drawable.helloworld);
}
}
这样应该可以
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯