我正在执行一个辅助功能项目,需要使用APIMap。我在Android Studio中看不到该Map。
Unknown Fragments - The <fragment> tag allows the layout file to dynamically include different layouts at runtime. At layout editing time the specific layout to be used is not known. You can choose which layout you would like previewed while editing the layout.
- <fragment com.google.android.gms.maps.SupportMapFragment ...> (Pick Layout ...)
Do not warn about <fragment> tags in this session.
有人有解决办法吗?
Screenshot of the problem
谢谢你的倾听
2条答案
按热度按时间eanckbw91#
这里的问题是Android studio IDE不知道要在布局编辑器中插入哪个片段,因为该片段是在运行时插入的。
要解决此问题,请遵循以下步骤(以下步骤适用于场景形式片段示例,但相同的原则适用于其他片段)
添加的行将类似于:
jhdbpxl92#
enter image description here