WebView不会出现在LinearLayout上

时间:2014-09-03 09:38:49

标签: android webview android-linearlayout

我在线性布局中显示WebView时遇到问题。在我的代码中,我可以将WebView视图更改为TextView,一切正常。我想展示11个包含Google搜索结果的WebView面板。

我的MainActivity.java

protected void onCreate(Bundle savedInstanceState) {
...
LinearLayout relLay = (LinearLayout) findViewById(R.id.main_relLay);
LayoutInflater inflater = (LayoutInflater) getApplication()
                .getSystemService(Context.LAYOUT_INFLATER_SERVICE);

for(int i=1; i<11; i++){
    View v_child = inflater.inflate(R.layout.row, null);
    relLay.addView(v_child);
    String link = "https://www.google.com/search?q=" + i;

    WebView web_view = (WebView) v_child.findViewById(R.id.row_webView);  
    web_view.loadUrl(message);
}
...

我的activity_main.xml

<RelativeLayout 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" >

<ScrollView
    android:id="@+id/scrollview"
    android:layout_width="fill_parent"
    android:layout_height="450dp" >

    <LinearLayout
        android:id="@+id/main_relLay"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="#0B7A3B"
        android:orientation="vertical" >
    </LinearLayout>
</ScrollView>
</RelativeLayout>

我的row.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" >
        <WebView
            android:id="@+id/row_webView"
            android:background="#323232"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:visibility="gone" >
        </WebView>
</LinearLayout>

2 个答案:

答案 0 :(得分:0)

默认情况下,您保持WebView知名度 GONE ,这就是为什么它没有显示。

只需从xml文件中的android:visibility="gone"删除行WebView即可。

 <WebView
        android:id="@+id/row_webView"
        android:background="#323232"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        > //Remove visibility line.
    </WebView>  

答案 1 :(得分:0)

修改你的row.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" >
        <WebView
            android:id="@+id/row_webView"
            android:background="#323232"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
 >
        </WebView>
</LinearLayout>