XML中的WebView无法使用Navigation Drawer Fragment

时间:2016-01-15 01:23:42

标签: android xml android-fragments webview

我是Android的新手,无法在线找到解决方案。我有一个导航抽屉,导致片段'RecentNews',它与它的XML'fragment_recent_news'有关。我在XML中有一个WebView(webview)设置,并设置了片段以便它应该加载页面,但它没有。我做错了什么?我不确定在过去的一年中,正确做到这一点的方式是否发生了变化,因为网上没有任何工作。感谢

fragment_recent_news(XML):

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" tools:context="com.hardingsoftware.hrcfitness.RecentNews">


<WebView
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@+id/webview"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentEnd="true" />


</RelativeLayout>

RecentNews:

package com.hardingsoftware.hrcfitness;


import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;



public class RecentNews extends Fragment {

WebView webView;




public RecentNews() {
    // Required empty public constructor
}





@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    // Inflate the layout for this fragment

    View rootView = inflater.inflate(R.layout.fragment_recent_news, container, false);
    WebView myWebView = (WebView) rootView.findViewById(R.id.webview);
    myWebView.loadUrl("www.hrcfitness.com/recent-news/");
    return rootView;

}


public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
}

}

编辑:我现在加载页面,但是我现在有另一个问题,webview似乎忽略了相对布局,部分位于主栏下面。

0 个答案:

没有答案