티스토리 뷰

반응형

Stack Overflow에 자주 검색, 등록되는 문제들과 제가 개발 중 찾아 본 문제들 중에서 나중에도 찾아 볼 것 같은 문제들을 정리하고 있습니다.

Stack Overflow에서 가장 먼저 확인하게 되는 가장 높은 점수를 받은 Solution과 현 시점에 도움이 될 수 있는 가장 최근에 업데이트(최소 점수 확보)된 Solution을 각각 정리하였습니다.

 

아래 word cloud를 통해 이번 포스팅의 주요 키워드를 미리 확인하세요.

Android WebView: handling orientation changes

안드로이드 WebView: 화면 회전 처리

 문제 내용 

The issue is the performance following rotation. The WebView has to reload the page, which can be a bit tedious.

문제는 회전 후 성능입니다. WebView는 페이지를 다시 로드해야 하기 때문에 다소 귀찮을 수 있습니다.

 

What's the best way of handling an orientation change without reloading the page from source each time?

페이지를 매번 다시 로드하지 않고 방향 변경을 처리하는 가장 좋은 방법은 무엇인가요?

 

 

 

 높은 점수를 받은 Solution 

If you do not want the WebView to reload on orientation changes simply override onConfigurationChanged in your Activity class:

WebView가 방향 변경시 다시 로드되지 않도록하려면 간단히 Activity 클래스에서 onConfigurationChanged를 오버라이드하면 됩니다:
@Override
public void onConfigurationChanged(Configuration newConfig){        
    super.onConfigurationChanged(newConfig);
}

 

And set the android:configChanges attribute in the manifest:

그리고 manifest에서 android:configChanges 속성을 설정하세요:
<activity android:name="..."
          android:label="@string/appName"
          android:configChanges="orientation|screenSize"

 

for more info see:
http://developer.android.com/guide/topics/resources/runtime-changes.html#HandlingTheChange

자세한 내용은 다음을 참조하십시오.
http://developer.android.com/guide/topics/resources/runtime-changes.html#HandlingTheChange

 

https://developer.android.com/reference/android/app/Activity.html#ConfigurationChanges

 

 

 

 가장 최근 달린 Solution 

Just write the following code lines in your Manifest file - nothing else. It really works:

매니페스트 파일에 다음 코드 줄을 작성하기만 하면 됩니다 - 그 이외의 것은 필요하지 않습니다. 정말로 작동합니다.
<activity android:name=".YourActivity"
  android:configChanges="orientation|screenSize"
  android:label="@string/application_name">

 

 

출처 : https://stackoverflow.com/questions/1002085/android-webview-handling-orientation-changes

반응형
댓글
공지사항
최근에 올라온 글