eclipse android 模拟器打开带有webview的页面时 啥都没有,连下面的text 都没有显示

启动时候:
图片说明

启动成功后页面:
图片说明

此时页面正常 当点击图片跳转时,出现问题。页面上啥都没有。。。
图片说明

target版本:
图片说明

问题页面layout配置如下:
图片说明

webview 还未进行任何配置。。。

android:id="@+id/timeView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_gravity="center"
android:layout_toStartOf="@+id/dataView"
android:format24Hour ="HH:mm"
android:format12Hour ="hh:mm"
android:textColor="@color/material_white"
android:textSize="@dimen/w_56" />

            <TextClock
                android:id="@+id/dataView"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:layout_gravity="center"
                android:layout_marginStart="@dimen/w_10"
                android:format24Hour ="yyyy.MM.dd\nEE     a"
                android:format12Hour ="yyyy.MM.dd\nEE     a"
                android:textColor="@color/material_white"
                android:textSize="@dimen/w_21"/>