我正在努力播放JW Player的视频。所以我使用的是HTML5WebView。其他一切都很好。在custom_screen.xml中只有1个问题
<LinearLayout android:id="@+id/error_console"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
错误消息:未指定方向,默认为 水平。添加儿童时,这是常见的错误来源 动态。
你能帮帮我吗?
答案 0 :(得分:0)
确定。我找到了解决方案。
只需在代码中添加以下行:android:orientation =“vertical”
现在代码看起来像:
<LinearLayout android:id="@+id/error_console"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="wrap_content"
/>