[WebView 로 컬 자원 이미지 글꼴 불 러 오기 등] 자주 사용 되 지 않 는 용법 집합

며칠 을 괴 롭 혔 던 문제 가 마침내 해결 되 었 다.
독립 개발 은 정말 괴롭다. 큰 소 가 나 를 데 리 고 본론 으로 들 어 갔 으 면 좋 겠 다.
회사 수요: json html 코드 를 되 돌려 줍 니 다.로 컬 렌 더 링 이 필요 하지만 안의 그림 과 글꼴 은 모두 로 컬 지원 이 필요 합 니 다. 사실은 간단 합 니 다. html 의 코드 는 대체적으로 이 렇 습 니 다.
@font-face {
font-family: biaoti;   --     
src: url('file:///android_asset/  .ttf')  --      
}
<img style=\'width:200px\' src=\'file:///android_asset/err.png\'>

클 라 이언 트 가 이렇게 쓰 면 돼 요.
String html = "<html><head></head><body><style> @font-face {font-family: biaoti; src: url('file:///android_asset/biaoti.ttf');}  body{text-indent: 2em;font-size:15;font-family:biaoti}</style><div>    </div> </body></html>";
<pre name="code" class="java">webView.loadDataWithBaseURL(null, html, "text/html", "utf-8",null);
</pre>  !<p></p><pre>



@Override
	public void setUserVisibleHint(boolean isVisibleToUser) {
		super.setUserVisibleHint(isVisibleToUser);
		if (isVisibleToUser) {

		} else {
			//  Fragment                 
			if (scrollView != null) {
				new Handler().post(new Runnable() {
					@Override
					public void run() {
						scrollView.fullScroll(ScrollView.FOCUS_UP);
					}
				});
			}
		}
	}
<pre name="code" class="html">              
    ViewPager                     ScrollVIew                      
       

좋은 웹페이지 즐겨찾기