Android Fragment WebView

Ich erstelle eine App für jemanden in meinem Counter

Ich habe ein Problem mit der App

Meine App hat Folie mene Gleiche App wie Youtube.

http://i.stack.imgur.com/4hxlM.png

aber das Problem mit WebView Ich habe ein Layout, es hat WebView

Das ist webView_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:background="@drawable/background2"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="39dp"
        android:text="@string/aboutme"
        android:textAppearance="?android:attr/textAppearanceLarge" />

    <WebView
        android:id="@+id/webView1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true" />

</RelativeLayout>

und das ist klasse

package com.alyousafi.SeebClub;

import com.alyousafi.SeebClub.R;

import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class TimeTible_forgment extends Fragment {

    public TimeTible_forgment(){}

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {

        View rootView = inflater.inflate(R.layout.webView_layout, container, false);

        return rootView;
    }
}

Jeder kann mir helfen. Wie kann ich WebView in meinem Fragment verwenden? Das ist ein großes Problem, bitte hilf mir >>>

Antworten auf die Frage(3)

Ihre Antwort auf die Frage