android – 更改ImageView

android – 更改ImageView,第1张

概述我在main.xml中设置了一个 ImageView,如果我想从我的View类访问它并使其可见= false,我该如何以编程方式执行此 *** 作? 谢谢 public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); theView = new GameView(this); 我在main.xml中设置了一个 ImageVIEw,如果我想从我的VIEw类访问它并使其可见= false,我该如何以编程方式执行此 *** 作?

谢谢

public voID onCreate(Bundle savedInstanceState) {      super.onCreate(savedInstanceState);    theVIEw = new GameVIEw(this);    theVIEw.setBackgroundResource(R.layout.main);    setContentVIEw(theVIEw);
解决方法 例如,在布局xml文件中,有一个imagevIEw1
<ImageVIEwandroID:ID="@+ID/imagevIEw1"androID:layout_gravity="center"androID:layout_wIDth="fill_parent"androID:layout_height="fill_parent"/>

在你的java src中,

ImageVIEw img=(ImageVIEw)findVIEwByID(R.ID.imagevIEw1);img.setVisibility(VIEw.GONE);img.setVisibility(VIEw.VISIBLE);img.setVisibility(VIEw.INVISIBLE);

你可以谷歌VIEw.Gone和VIEw.VISIBLE之间的区别

总结

以上是内存溢出为你收集整理的android – 更改ImageView全部内容,希望文章能够帮你解决android – 更改ImageView所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1137140.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存