我有:
現在我有一個滾動視圖作爲父項。在這個滾動視圖中,我使用一個WebView加載一個URL,然後在其中顯示文本。 這裏是我的xml:在滾動視圖中滾動Webview
<ScrollView
android:id="@+id/parentScroll"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/Heading" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="5dp" >
<WebView
android:id="@+id/webView"
android:layout_width="match_parent"
android:layout_height="300dp"
android:background="@drawable/webview" />
</RelativeLayout>
</ScrollView>
我想要什麼:
我要滾動webView的裏面。當我觸摸webView時,不幸的是父滾動視圖被調用。 我必須保持父滾動視圖,但除此之外,當我觸摸webView時,我想滾動其中的WebView內容。
我該怎麼做?
@CaseyB ...但它我的要求。 。我必須保持webView在滾動視圖。你對這個有什麼想法嗎? – Noman
那麼恐怕你的要求是錯誤的,你應該永遠不需要這樣做。 –
@JosephEarl ..好吧,然後我嘗試改變設計。它對我來說很難.. – Noman