0

我正在努力播放 JW Player 的视频。所以我正在使用 HTML5WebView。其他一切都很好。在 custom_screen.xml 中只有 1 个问题

<LinearLayout android:id="@+id/error_console"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
        />

错误消息:未指定方向,默认为水平。这是
动态添加子代时常见的错误来源。

你能帮我么?

4

1 回答 1

0

好的。我找到了解决方案。

只需在代码中添加这一行:android:orientation="vertical"

现在代码将如下所示:

<LinearLayout android:id="@+id/error_console"
            android:layout_width="match_parent"
            android:orientation="vertical"
            android:layout_height="wrap_content"
        />
于 2013-11-11T08:44:12.763 回答