안드로이드에서 webview가 fragment 로 만들어졌을 경우 웹페이지에서 <select> 태그가 작동하지 않을때가 있다.
액티비티로 만들면 바로 작동이 되지만 일부 디바이스에서 작동이 안될때가 있어서. 속터진다. ㅋㅋ
인터넷 검색하면 여러 답변이 있는데, 우리가 필요로 하는 건 없었다.
어플에서 수정이 필요하다.
==================================================================================
WebView into a Fragment (android.support.v4)
http://stackoverflow.com/questions/9279632/webview-into-a-fragment-android-support-v4
==================================================================================
fragment 에 대한 설명 : http://androidhuman.tistory.com/469
예제 소스는 http://daddycat.blogspot.com/2011/08/android-30-fragments-example.html 에서 가져와서 약간 수정했음.
허니컴 이하에서 사용할 때 주의할 점 : http://www.androidpub.com/1432908
==================================================================================
Select dropdown in Android webview
The select tag just doesn’t work sometimes in Android, especially in an app using webview. This drove me nuts for a long long time. The main fix I found, even if your select is buried deep in divs and rows and what ever, is this css:
select {
visibility: visible;
-webkit-appearance: menulist-text;
}
The -webkit-appearance might be the only one actually needed and setting it to ‘listbox’ works too.
'프로그래밍 > App' 카테고리의 다른 글
[Android] Scaloid - 오픈소스 안드로이드 라이브러리 (0) | 2013.01.29 |
---|---|
[APP] Android - Fragment , Activity LifeCycle (0) | 2013.01.21 |
[IOS] the iOS 5 Developer's Cookbook 예제 (0) | 2012.12.11 |
[APP] N.O.V.A. 3 - Near Orbit Vanguard Alliance By Gameloft (0) | 2012.10.05 |
iPhone 5 and iOS 6 for HTML5 developers, a big step forward: web inspector, new APIs and more (0) | 2012.09.28 |