글쎄, 가장 좋은 방법은 아직 scrollView에 넣어하는 것입니다!
그것은 내 삼성 안드로이드 4.4에서 작동하지만 나머지는 알지 못합니다!
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:id="@+id/news_activity_title_lay"
android:layout_width="match_parent"
android:layout_height="wrap_content">
//Some Widgets Here for header
</RelativeLayout>
<WebView
android:layout_below="@+id/news_activity_title_lay"
android:id="@+id/news_activity_web_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white">
</WebView>
<LinearLayout
android:id="@+id/news_activity_related_base_lay"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_below="@+id/news_activity_web_view">
//Some Widgets Here foe footer
</LinearLayout>
</RelativeLayout>
재미있는 것은, 비록 안드로이드 스튜디오 내가 이렇게하지 말라는입니다! :/
매력처럼 작동합니다 (Android 6). –