Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 |
Tags
- decompiler
- STS
- SpringSource Tool Suite
- 자바
- MSsql
- C#
- 웹뷰
- 안드로이드
- 컬럼명
- asp.net
- Eclipse
- html
- MANTIS
- varags
- scrollView
- Redirect
- Android
- WebView
- Maven
- jsp
- javascript
- Apache Lucene
- 이클립스
- TextBox
- Java
- Web Service
- 웹 서비스
- MS-SQL
- 자바스크립트
- Bootstrap
Archives
- Today
- Total
bboks.net™
Android WebView에 세션(쿠키) 공유하기 본문
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_user_report);
WebViwe webView = (WebView) findViewById(R.id.webview);
CookieSyncManager.createInstance(this);
cookieManager = CookieManager.getInstance();
CookieSyncManager.getInstance().startSync();
//도메인 url, 쿠키
cookieManager.setCookie("user domain url", "cookie value");
}