1

Androidフラグメントを使用して同じ画面で2つのWebビューを開く方法を理解するのを手伝ってくれる人はいますか?各Webビューは、1-google、2、yahooなどの特定のWebページを表示する必要があります。

私はあまりにも多くのチュートリアルとサンプルを試しました.何もうまくいきません... :(

私の考えと矛盾する私にとっての主な問題は、webViewを開くためにフラグメントクラスに何を書くか、アプリ全体を実行するメインアクティビティに何を書くかです。

助けてくれてありがとう.. :)

これは、1つの画面でポートレートモードで正常に実行され、ランドスケープモードでクラッシュする私のコードです:

package com.example.androidwebviewfragment;


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

public class Fragment1 extends Fragment {

    WebView myWebView;
    final static String myBlogAddr = "http://android-er.blogspot.com";
    String myUrl;


    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.layout_webfragment,container,false);
        myWebView = (WebView)view.findViewById(R.id.mywebview);

        myWebView.getSettings().setJavaScriptEnabled(true);                
        myWebView.setWebViewClient(new MyWebViewClient());

        if(myUrl == null){
            myUrl = myBlogAddr;
        }
        myWebView.loadUrl(myUrl);

        return view;

    }

    private class MyWebViewClient extends WebViewClient {
        @Override
        public boolean shouldOverrideUrlLoading(WebView view, String url) {
            myUrl = url;
            view.loadUrl(url);
            return true;
        }
    }

    @Override
    public void onActivityCreated(Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
        setRetainInstance(true);
    }

}

そしてここに2番目のフラグメントがあります:

package com.example.androidwebviewfragment;

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


public class Fragment2 extends Fragment {

    WebView myWebView;
    final static String myBlogAddr = "http://android-er.blogspot.com";
    String myUrl;


    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        View view =   inflater.inflate
 (R.layout.layout_webfragment2,container,false);
        myWebView = (WebView)view.findViewById(R.id.mywebview);

        myWebView.getSettings().setJavaScriptEnabled(true);                
        myWebView.setWebViewClient(new MyWebViewClient());

        if(myUrl == null){
            myUrl = myBlogAddr;
        }
        myWebView.loadUrl(myUrl);

        return view;

    }

    private class MyWebViewClient extends WebViewClient {
        @Override
        public boolean shouldOverrideUrlLoading(WebView view, String url) {
            myUrl = url;
            view.loadUrl(url);
            return true;
        }
    }

    @Override
    public void onActivityCreated(Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
        setRetainInstance(true);
    }

}

主なアクティビティは次のとおりです。package com.example.androidwebviewfragment;

import android.app.Activity;
import android.os.Bundle;

public class MainActivity extends Activity {

/* (non-Javadoc)
 * @see android.app.Activity#onCreate(android.os.Bundle)
 */
@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
}

}

the .xml files are :

1-フラグメント 1 :

<WebView
    android:id="@+id/mywebview"
    android:layout_height="match_parent"
    android:layout_width="match_parent" />

</LinearLayout>

2-フラグメント 2 :

</LinearLayout>

3-メインの xml レイアウト:

<fragment
    android:name="com.example.androidwebviewfragment.Fragment1"
    android:id="@+id/myweb_fragment1"
    android:layout_height="match_parent"
    android:layout_width="match_parent" />

  <fragment
    android:name="com.example.androidwebviewfragment.Fragment2"
    android:id="@+id/myweb_fragment2"
    android:layout_height="match_parent"
    android:layout_width="match_parent" />

 </RelativeLayout>

これは、layout-land フォルダー内の main.xml です。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
   <fragment
    android:name="com.example.androidwebviewfragment.Fragment1"
    android:id="@+id/myweb_fragment"
    android:layout_height="match_parent"
    android:layout_width="match_parent" />

  <fragment
    android:name="com.example.androidwebviewfragment.Fragment2"
    android:id="@+id/myweb_fragment"
    android:layout_height="match_parent"
    android:layout_width="match_parent" /> 

 </LinearLayout>

ログからの風景モードのエラー:

java.lang.RuntimeException: 
Unable to start activity ComponentInfo{com.example.androidwebviewfragment                                                                                           
/com.example.androidwebviewfragment.MainActivity}
:android.view.InflateException: Binary XML file line #12: Error inflating class fragment
4

1 に答える 1

1

フラグメント クラスでビューを作成してそれをメイン アクティビティに返し、メイン アクティビティでフラグメントをバインドするための fragmentadapter を作成します。詳細については、( http://developer.android.com/reference/android/support/v4/view/ViewPager.html ) リンクを参照し、( http://www.vogella.com/articles/AndroidFragments/article.htmlを参照してください。 ) 例えば。

于 2013-07-28T10:17:28.957 に答える