webview 는 scrollview 와 함께 미 끄 러 집 니 다.

15639 단어 webview
1、
레이아웃 파일
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"
    xmlns:tools="http://schemas.android.com/tools"
    android:background="#fafafa"
    android:fitsSystemWindows="true"
    android:orientation="vertical">
    <include
        android:id="@+id/title_bar"
        layout="@layout/top_title_bar" />
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#fafafa">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">
            <TextView
                android:id="@+id/titleContent"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="@dimen/base_dimen_30"
                android:layout_marginTop="@dimen/base_dimen_30"
                android:textColor="#646464"
                android:singleLine="true"
                android:ellipsize="end"
                android:layout_marginRight="@dimen/base_dimen_30"
                android:textSize="16sp" />
            <TextView
                android:id="@+id/onlineTime"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="@dimen/base_dimen_30"
                android:layout_marginTop="@dimen/base_dimen_30"
                android:textColor="#646464"
                android:textSize="16sp" />
            <WebView
                android:id="@+id/webview"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:background="#fafafa"
                android:scrollbars="none"
                tools:ignore="WebViewLayout"
                android:layout_marginTop="@dimen/base_dimen_30"
                android:visibility="visible" />
        LinearLayout>
    ScrollView>
LinearLayout>
tools:ignore="WebViewLayout"

이 두 코드 의 주요 역할 은 바로
xmlns:tools="http://schemas.android.com/tools"
<LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">
2、
웹 뷰 는 간단하게 쓰 면 위의 내용 은 기본적으로 된다.
import android.annotation.SuppressLint; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.graphics.Bitmap; import android.os.Bundle; import android.view.KeyEvent; import android.view.Menu; import android.webkit.WebSettings; import android.webkit.WebView; import android.webkit.WebViewClient; import android.widget.EditText; @SuppressLint({ "SetJavaScriptEnabled", "JavascriptInterface" }) public class MainActivity extends Activity {private EditText myEditText1;private EditText myEditText2;private EditText myEditText3;private WebView myWebView = null;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);initView();}@SuppressLint("SetJavaScriptEnabled")private void initView() {myEditText1 = (EditText) findViewById(R.id.edit1);myEditText1 = (EditText) findViewById(R.id.edit2);myEditText1 = (EditText) findViewById(R.id.edit3);myWebView = (WebView) findViewById(R.id.content);WebSettings webSettings = myWebView.getSettings(); / / WebView 속성 을 설정 하여 Javascript 스 크 립 트 webSettings. setJavaScriptEnabled (true) 를 실행 할 수 있 습 니 다. / / 설정 은 파일 webSettings. setAllowFileAccess (true) 에 접근 할 수 있 습 니 다.http://www.baidu.com"); / / 웹 보기 myWebView 를 설정 합 니 다. setWebView 클 라 이언 트(new webViewClient ();} @ Overridepublic boolean onCreateOptionsMenu (Menu menu) {/ Inflate the menu; this adds items to the action bar if it is present. getMenuInflater (). inflate (R. menu. main, menu); return true;} @ Override / / / Activity 류 의 onKeyDown (int keyCoder, KeyEvent 이벤트) 방법 Public boolean onKeyDown(int keyCode, KeyEvent event) {if ((keyCode = = KeyEvent. KEYCODE BACK) & & myWebView. canGoBack ()) {myWebView. goBack (); / / goBack () 은 WebView 의 이전 페이지 return true;} finish (); / / 종료 프로그램 return false;} / / 웹 보기 private class webView Client extends WebViewClient {public boolean shouldOverrideUrlLoading (WebView, String url){view.loadUrl(url);return true;}} }
3、
본 고 는 프로젝트 에 실제 적 으로 응용 되 었 고 학습 코드 는 다음 과 같다.http://download.csdn.net/download/qq_30299129/9603446

좋은 웹페이지 즐겨찾기