<merge>标签作为Root元素没有正确显示视图?

时间:2018-01-04 17:13:32

标签: android xml android-layout

如果我放置&lt; 合并&gt;作为我的子视图的根元素,它在API 19,15上没有显示,但我确实在API 26上显示,但视图是重叠的,实际问题是什么?

在我使用&lt; FrameLayout &gt;之前,我收到了一个Lint警告,用&lt; merge &gt;替换它标签

在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>

0 个答案:

没有答案