如果我放置< 合并>作为我的子视图的根元素,它在API 19,15上没有显示,但我确实在API 26上显示,但视图是重叠的,实际问题是什么?
在我使用< FrameLayout >之前,我收到了一个Lint警告,用< merge >替换它标签
在Code代码片段中,API 15,19上没有显示任何内容,但是在API 26上它显示了重叠函数中的TextViews,问题是什么?
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="hello"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="world"/>
</merge>