1. 程式人生 > >android-實現WebView只能滾動不能點選

android-實現WebView只能滾動不能點選

轉載自mjjmjc
實現WebView只能上下滾動不能對內容進行點選(enable scroll and disable click),主要有兩個步驟:
1、新增ScrollView

2、禁止WebView的點選事件傳遞
一、主要佈局編寫

    <ScrollView  
           android:layout_width="fill_parent"  
           android:layout_height="match_parent" >  
           <WebView  
               android:id="@+id/webView"
android:layout_width="fill_parent" android:layout_height="wrap_content" />
</ScrollView>

二、禁止WebView點選

    webView.setOnTouchListener(new OnTouchListener() {  
                @Override  
                public boolean onTouch(View v, MotionEvent event) {  
                        return
true; } });