我旁边有三个网络视图, 用于显示 seperate spinner 。 我得到了这个错误的 Somtimes, 这给窗口转换造成问题 。
这里是我的Xml...
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:orientation="horizontal"
android:layout_height="300dp"
android:layout_width="match_parent"
android:gravity="center">
<WebView
android:id="@+id/measure_view"
android:background="#77000000"
android:layout_height="match_parent"
android:layout_width="160dp"
android:focusable="true"/>
<WebView
android:id="@+id/input_view"
android:background="#77000000"
android:layout_height="match_parent"
android:layout_width="160dp"
android:focusable="true"/>
<WebView
android:id="@+id/output_view"
android:background="#77000000"
android:layout_height="match_parent"
android:layout_width="160dp"
android:focusable="true"/>
</LinearLayout>
有什么想法吗?
谢谢,纳撒尼