gpt4 book ai didi

java - 我的 LinearLyout 的图像背景,包含一个 webview,没有出现

转载 作者:行者123 更新时间:2023-11-29 21:30:15 25 4
gpt4 key购买 nike

我有一个 fragment 包含一个包含 webview 的 LinearLayout,当更改我的 webview 中的 html 字符串时,有时我的 LinearLayout 的背景不会出现。我的 fragment :

`

 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbarStyle="outsideOverlay"
tools:context=".NewsFragment" >

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

<LinearLayout
android:id="@+id/linearLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:background="@drawable/bg_item_single"
android:orientation="vertical"
android:padding="@dimen/list_margin" >

<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:textColor="#000"
android:textSize="20sp" />

<WebView
android:id="@+id/webview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/transparent" />
</LinearLayout>
</LinearLayout>

</ScrollView>

`

如果我在另一个 linearLayout 中有一个 linearLayout 只是在我的 scrollView 底部有一个空间,这不是问题。

我的代码:`

private void populate() {

textView.setText(grant.getName());
// Configure w`enter code here`ebview
webview.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE);
webview.getSettings().setJavaScriptEnabled(false);
webview.setBackgroundColor(Color.argb(1, 0, 0, 0));
webview.setOnTouchListener(new View.OnTouchListener() {

@Override
public boolean onTouch(View v, MotionEvent event) {
return (event.getAction() == MotionEvent.ACTION_MOVE);

}
});

webview.loadDataWithBaseURL("file:///android_asset/", createFullHtmlPage("styles.css", grant.getGrantDescription(), 0), "text/html", "UTF-8", null);

}

`

我看不出问题所在。

最佳答案

尝试设置android:layout_height="wrap_content",并移除该 View 的透明背景。

<WebView
android:id="@+id/webview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/transparent" />

关于java - 我的 LinearLyout 的图像背景,包含一个 webview,没有出现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19689465/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com