Android:重绘布局内的特定视图
我有一个垂直对齐的 LinearLayout,其中包含一个 TextView、我自己的自定义视图类,我希望在底部放置一个广告。
我正在自定义视图类(扩展 View)中绘制对象,但除非我调用 setContentView(R.layout.myview) ,否则它不会更新到屏幕,但这会将我的 TextView 重置为我不想要默认文本(存储在 xml 文件中的内容),并且我认为它也会重新绘制新广告...烦人。
有没有办法可以在屏幕上重绘/刷新我的自定义视图,而不影响我的文本视图或布局上可能有的其他内容?
I have a vertically aligned LinearLayout which contains a TextView, my own custom view class, and i'm hoping to put an ad at the bottom.
I'm drawing objects in my custom view class (that extends View), but it does not get updated to the screen unless i call setContentView(R.layout.myview)
, but this resets my TextView to the default text (what is stored in the xml file) which i don't want, and i assume it would redraw a new ad as well... annoying.
Is there a way i can redraw/refresh my custom View to the screen without affecting my textview or whatever else i may have on my layout?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
View.invalidate()
怎么样?来自参考:
How about
View.invalidate()
?From the reference: