• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps How can I make the GUI to half use webView

Make your layout xml something like this:

Code:
<LinearLayout android:orientation="vertical">
<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="0.5">
<WebView
    android:layout_width="match_parent"
    android:layout_height="match_parent" />
</RelativeLayout>
<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="0.5">
//Other views here
</RelativeLayout>
</LinearLayout>

This code isn't really exact, but should be treated as pseudocode.
 
Back
Top Bottom