WebView во фрагменте - другие фрагменты работают хорошо, но это приводит к сбою приложения - PullRequest
0 голосов
/ 11 июля 2020

Можете ли вы сказать мне, что не так в моем коде и почему веб-просмотр не работает? Другие фрагменты работают хорошо, но этот приводит к сбою всего приложения. У меня много фрагментов с videoView и они работают. Это должно отображать веб-страницу, но я не могу заставить ее работать. Вот мой код:

XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#000000"
    tools:context=".Trz">


    <WebView
        android:id="@+id/webview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        />
</androidx.constraintlayout.widget.ConstraintLayout>

KT

package com.tester.testing

import android.content.pm.ActivityInfo
import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.webkit.WebView
import androidx.fragment.app.Fragment
import kotlinx.android.synthetic.main.fragment_second.*

/**
 * A simple [Fragment] subclass as the second destination in the navigation.
 */
class Trz : Fragment() {

    override fun onCreateView(
        inflater: LayoutInflater, container: ViewGroup?,
        savedInstanceState: Bundle?
    ): View? {
        // Inflate the layout for this fragment
        val rootView = inflater.inflate(R.layout.fragment_second, container, false)
        val myWebView: WebView = rootView.findViewById(R.id.webview)
        myWebView.loadUrl("http://www.example.com")
return rootView
    }

    override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
        super.onViewCreated(view, savedInstanceState)
    }
}

Спасибо.

...