android– 以编程方式将ImageView添加到Layout

android– 以编程方式将ImageView添加到Layout,第1张

概述我想创建从屏幕上方向下的图像.到今天为止我有这个:ImageViewmario=(ImageView)findViewById(R.id.mario);TranslateAnimationanim=newTranslateAnimation(0f,0f,0,400);anim.setInterpolator(newLinearInterpolator());anim.setRepeatCount(Animation.INFINITE);

我想创建从屏幕上方向下的图像.

到今天为止我有这个:

ImageVIEw mario = (ImageVIEw) findVIEwByID(R.ID.mario);TranslateAnimation anim = new TranslateAnimation(0f, 0f, 0, 400);anim.setInterpolator(new linearInterpolator());anim.setRepeatCount(Animation.INFINITE);anim.setDuration(800);mario.startAnimation(anim);

问题是我必须在布局上的xml文件上设置imagevIEw,这段代码只创建1张图片.

我想对应用程序进行编程,以在屏幕的上半部分创建几个图像(例如在循环中)并让它们下拉到屏幕上. (这里我在这里使用TranslateAnimation).
我找到了这样的东西:

ImageVIEw mario = (ImageVIEw) findVIEwByID(R.drawable.mario);

但我不知道如何设置不在xml文件中的ImageVIEw的位置(是否可能?).
我想创建linearLayout并将其添加到ImageVIEw.但是如何将linearlayout添加到现有布局?

提前致谢 :)

解决方法:

您可以使用类似的东西创建布局

VIEw vIEw = (VIEw) findVIEwByID(R.layout.current_layout); //the layout you set in `setContentVIEw()`linearLayout picLL = new linearLayout(CurrentActivity.this);picLL.layout(0, 0, 100, 0);picLL.setLayoutParams(new LayoutParams(1000, 60));picLL.setorIEntation(linearLayout.HORIZONTAL);((VIEwGroup) vIEw).addVIEw(picLL);

你在layout()中传递的参数显然取决于你想要的.然后,您可以创建单独的视图以添加到刚刚创建的布局.但我强烈建议您阅读文档,了解这里可以做些什么.

ViewGroup

View

编辑

ImageVIEw myImage = new ImageVIEw(this);picLL.addVIEw(myImage);//set attributes for myImage;
总结

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

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存