표시가 사라지거나 원하는 레이아웃에서 가시성이 사라집니다. 당신이 볼이보기를 할 때
세트 가시성 실용적으로 ... "볼 수"내 XML 응답에 대한
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:visibility="gone"
android:background="@drawable/ic_launcher">
</LinearLayout>
감사를 확인,하지만 귀하의 케이스를 일어나고있는 것은 웹보기 일부를 점유한다는 것이다합니다 콘텐츠 및 그 이미지도 점령하고 있습니다. 나는 단추 footer 스트립 webview page.so의 일부 경우에는 webview 이상해야합니다 그걸로 몇 가지 이벤트를 줄 수 있습니다. 그것을 클릭하면 사라져야하고 webview의 다른 페이지로 이동해야합니다 . – sandip