webview 는 scrollview 와 함께 미 끄 러 집 니 다.
15639 단어 webview
레이아웃 파일
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
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Android 앱에 CanvasJS 차트를 추가하는 방법은 무엇입니까?Android WebView는 웹 URL을 열거나 html 데이터를 로드하는 데 사용되는 Android UI 위젯입니다. WebView는 Android 활동에서 웹 페이지를 표시하는 데 사용됩니다. 간단히 말해서 A...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.