Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有一个包含一些布局、视图对象和其他东西的完整界面,现在我想编写一个 java 方法,在所有这些布局上添加一个弹出错误消息到前面。
我知道有可能以main_layout这种方式将其添加到现有布局(例如)中:
main_layout
main_layout.addView(error_layout);
但是有没有办法让它独立于界面上的其他布局?就像是
UInterface.addView(error_layout);
?
这应该为您提供活动的根布局
getWindow().getDecorView().findViewById(android.R.id.content)