안드로이드 개발 질문/답변
(글 수 45,052)
안녕하세요~
제가 http://www.yu.ac.kr/_korean/community/index.php?c=plaza_02_list&category=1
이주소를 웹뷰로 뛰우려고 하는데 아무 내용이 나오지 않네요 ㅜㅜ
웹 브라우저로 주소를 입력해서 들어가면 잘 뜨는데 웹뷰로 뛰우니깐 내용 표시가 안되는군요 ㅜ
package com.android.yu;
import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;
public class FreeBoard extends Activity{
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.webview);
WebView wv = (WebView)findViewById(R.id.web_library);
wv.loadUrl("http://www.yu.ac.kr/_korean/community/index.php?c=plaza_02_list&category=1");
wv.setInitialScale(30);
// wv.setWebChromeClient(client)
// wv.getSettings().setSavePassword(false);
wv.getSettings().setJavaScriptEnabled(true);
wv.getSettings().setLoadsImagesAutomatically(true);
wv.getSettings().setSaveFormData(false);
wv.getSettings().setSupportZoom(true);
wv.getSettings().setUserAgent(1);
wv.getSettings().setSupportMultipleWindows(false);
}
}
ㅇㅣ 소스 인데요~ 웹뷰에 속성을 다 바꿔봐도 도무지 작동이 하지 않습니다. ㅜ
고수님들 좀 도와주세요~



