2013-06-03 51 views
0

我的佈局:網頁視圖內的LinearLayout內滾動型犯規顯示

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="match_parent" > 

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_margin="20dip" 
    android:background="@drawable/feed_bg_newnew" 
    android:orientation="vertical" > 

    <include 
     android:id="@+id/header" 
     layout="@layout/info_header" /> 

    <WebView 
     android:id="@+id/myWebView" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_margin="5dip" /> 

    <include 
     android:id="@+id/imgAttachmentsRow" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_marginLeft="5dip" 
     android:layout_marginTop="5dip" 
     layout="@layout/attachemnts_thumbs_container" 
     android:visibility="invisible" /> 

    <include 
     android:id="@+id/docAttachmentsContainer" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_marginTop="5dip" 
     layout="@layout/document_attachments_thumbs_container" 
     android:visibility="invisible" /> 

    <include 
     android:id="@+id/feedItemFooter" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     layout="@layout/feed_row_footer" /> 


</LinearLayout> 

網頁視圖犯規表演,我也沒有在代碼隱藏它。所有其他視圖正確顯示。 如果我點擊某個按鈕的某個部分,webview會顯示。 webView的內容從字符串加載。

出了什麼問題?

+0

嘿你找到了解決這個問題的辦法嗎?請發佈它作爲答案。 – Atharva

回答

0

webview有它自己的「scrollview」系統。所以,當你有一個長網頁時,webview會自動創建滾動條 ,所以爲已有的東西放置滾動視圖並不是邏輯。 只是把它放在外面,它會顯示正常。