发布这篇文章我有点尴尬,但我似乎无法弄明白 哪里出错了我看过每一个例子和每个例子 教程,一切看起来都对我。这就是我正在做的事情。一世 有一个列表视图,当你点击一个项目,它将带你到一个 WebView,显示与之关联的一些静态格式化文本 列表条目。
我把它全部用于TextView,但我希望能够使用 文本的HTML格式和计算WebView的方法 走。现在它只是显示一个通用链接 测试目的,但是当viewContent意图启动它时 到黑屏。我可以回去再挑选另一个条目 只是显示黑屏。
我不确定你想要看到的代码是什么,所以这里是 viewSection类文件和viewsection.xml布局。
viewSection.java:
import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;
public class viewSection extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
WebView wv;
setContentView(R.layout.viewsection);
wv = (WebView) findViewById(R.id.wv1);
wv.loadData("<a href='x'>Hello World! - 1</a>",
"text/html",
"utf-8");
}
}
viewsection.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<WebView android:id="@+id/wv1"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
/>
</LinearLayout>
答案 0 :(得分:2)
您可能希望将android:layout_height
上的WebView
设置为fill_parent
。我不确定WebView
是否支持wrap_content
。
编辑:您还需要将LinearLayout
宽度和高度设置为fill_parent
。
此外,如果您使用非常轻的HTML样式,您仍然可以使用TextView; API Demos示例应用中有关于如何执行此操作的示例(例如StyledText.java和Link.java)。