我正在尝试在滚动视图中添加一个 webview,它可以显示具有透明背景的静态 HTML 文本。这是代码
WebView descr = (WebView) view.findViewById(R.id.description);
descr.setBackgroundColor(Color.TRANSPARENT);
descr.loadData(desc, "text/html", "utf-8");
descr.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
如果我不设置 setLayerType 值,我可以正确看到文本。但是,它会在滚动完成时添加闪烁效果。如果添加了 setLayerType 行,则某些页面的文本会消失。这是我的布局的样子
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/title" >
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:descendantFocusability="blocksDescendants">
<ImageView
android:id="@+id/icon"
android:layout_width="fill_parent"
android:layout_height="100dp"
android:contentDescription="@id/title"
android:paddingLeft="10dp"
android:paddingRight="10dp"
/>
<WebView
android:id="@+id/description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="10dp"
android:paddingTop="10dp"
android:textAlignment="gravity"
android:textSize="14sp"
android:background="@null"
android:focusable="false" />
</LinearLayout>
</ScrollView>
当我在手机而不是模拟器上安装 .apk 文件时会出现此问题。我使用的是安卓版本 4.1.2。有人可以让我知道需要做什么才能显示文本而没有闪烁效果和透明背景吗?