blob: 13fbf0ca5a3232d834bf5ff84fac4883e25d481d [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- OK -->
<WebView
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!-- Report error that parent height is wrap_content -->
<WebView
android:layout_width="match_parent"
android:layout_height="match_parent" />
<!-- Suppressed -->
<WebView
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:ignore="WebViewLayout" />
</LinearLayout>
</LinearLayout>