Android:重绘布局内的特定视图

发布于 2024-10-16 07:01:49 字数 275 浏览 1 评论 0原文

我有一个垂直对齐的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寻找一个思念的角度 2024-10-23 07:01:49

View.invalidate() 怎么样?

来自参考

注意框架不会绘制
不在无效视图中的视图
地区。

要强制绘制视图,请调用
invalidate()

How about View.invalidate()?

From the reference:

Note that the framework will not draw
views that are not in the invalid
region.

To force a view to draw, call
invalidate().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文