Поместите веб-просмотр в веб-просмотр в ScrollView - PullRequest
0 голосов
/ 29 апреля 2018

Я создал два webviews и мне нужно поместить их друг под друга, но они перекрывают друг друга вместо того, чтобы идти друг под другом. Это означает, что отображается только второй экран webview, а не оба.

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<ScrollView  xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
>

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <WebView
        android:id="@+id/webview2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:autoLink="web"
        android:scrollbars="none"
        android:textColor="@android:color/black" />


    <WebView
        android:id="@+id/webview1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:autoLink="web"
        android:scrollbars="none"
        android:textColor="@android:color/black" />

</LinearLayout>

</ScrollView>

MainActivity.java

public class MainActivity extends Activity {

    WebView webView, webview2;
    CheckBox cbk1, cbk2;

    @SuppressLint("JavascriptInterface")
    @Override
    protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);

            webView = (WebView) findViewById(R.id.webview2);
            webview2 = (WebView) findViewById(R.id.webview1);
            webView.loadUrl("file:///android_asset/nextscreen.html");
            webview2.loadUrl("file:///android_asset/newscreen2.html");
    }
}

Ответы [ 3 ]

0 голосов
/ 29 апреля 2018

Просто поместите его в LinearLayout:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  orientation="vertical">

  <WebView
  android:id="@+id/webview2"
  android:layout_width="match_parent"
  android:layout_height="50dp"
  android:autoLink="web"
  android:scrollbars="none"
  android:textColor="@android:color/black" />


  <WebView
  android:id="@+id/webview1"
  android:layout_width="match_parent"
  android:layout_height="570dp"
  android:autoLink="web"
  android:scrollbars="none"
  android:textColor="@android:color/black" />

</LinearLayout>
0 голосов
/ 29 апреля 2018

, потому что вы используете FrameLayout как root замените FrameLayout на LinearLayout и добавьте android:orientation="vertical"

Попробуйте это:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
 android:orientation="vertical"
>

<WebView
    android:id="@+id/webview2"
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:autoLink="web"
    android:scrollbars="none"
    android:textColor="@android:color/black" />


<WebView
    android:id="@+id/webview1"
    android:layout_width="match_parent"
    android:layout_height="570dp"
    android:autoLink="web"
    android:scrollbars="none"
    android:textColor="@android:color/black" />

</LinearLayout >
0 голосов
/ 29 апреля 2018

Вы используете FrameLayout, который накладывает представления поверх других. Вместо этого используйте LinearLayout.

...