我有一个垂直对齐的LinearLayout,它包含一个TextView,我自己的自定义视图类,我希望在底部放置一个广告.
我在我的自定义视图类(扩展View)中绘制对象,但它不会更新到屏幕,除非我调用setContentView(R.layout.myview),但这会将我的TextView重置为默认文本(存储的内容)在我不想要的xml文件中,我认为它会重新绘制一个新广告…很烦人.
有没有办法我可以重绘/刷新我的自定义视图到屏幕而不影响我的textview或我的布局上可能有的其他任何东西?
最佳答案
View.invalidate()怎么样?
原文链接:https://www.f2er.com/android/430367.htmlNote that the framework will not draw
views that are not in the invalid
region.To force a view to draw,call
07001.