2

stackoverflow で同様のトピックを見つけましたが、役に立ちませんでした。フラグメントを使用してGoogleマップを表示していますが、別のフラグメントを取得して戻ってきた後にクラッシュします。つまり、Google マップは 1 回だけ表示され、クラッシュします。ここにコードがあります。

public class MapTabMainFragment extends BaseFragment {
    private AdView adView;

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

        View view = null;
        try {
            view = inflater.inflate(R.layout.fragment_map_main, container,
                    false);
        } catch (Exception e) {
            e.printStackTrace();
        }

        initComponents(view);
        initValues();
        initListeners();

        return view;
    }

    public void initComponents(View view) {
        adView = (AdView) view.findViewById(R.id.adView1);
    }

    public void initValues() {
        AdRequest re = new AdRequest();
        adView.loadAd(re);
    }

    public void initListeners() {

    }
}

 public class BaseFragment extends Fragment {

    public BottomTabActivity mActivity;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        mActivity = (BottomTabActivity) this.getActivity();
    }

    public boolean onBackPressed() {
        return false;
    }

    public void onActivityResult(int requestCode, int resultCode, Intent data) {

    }
}

例外をキャッチしようとすると、

android.view.InflateException: バイナリ XML ファイルの行 #20: クラス フラグメントの拡張中にエラーが発生しました。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/lib/com.google.ads"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/WhiteColor"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:src="@drawable/header" />

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="@dimen/data_listview_margin_top" >

        <fragment
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/map"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginBottom="@dimen/data_listview_margin_bottom"
            class="com.google.android.gms.maps.SupportMapFragment" />
        <!--class="com.cyrilmottier.polaris2.maps.SupportMapFragment"  -->

        <com.google.ads.AdView
            android:id="@+id/adView1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            app:adSize="SMART_BANNER"
            app:adUnitId="ca-app-pub-9766031373541061/3761995838"
            app:loadAdOnCreate="true"
            app:testDevices="TEST_EMULATOR, TEST_DEVICE_ID" >
        </com.google.ads.AdView>
    </RelativeLayout>

</LinearLayout>
4

6 に答える 6

3

XML でフラグメントをネストすることはできません。コードで行う必要があります。最善の方法は、FrameLayout を作成し、実行時にフラグメントに置き換えることです。

XML が次のようになっているとします。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/inquiryLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".InquiryFragment" >

<FrameLayout
    android:id="@+id/contentFrame"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true" >

</FrameLayout>
 </RelativeLayout>

コードは簡単です。

public class InquiryFragment extends Fragment {

    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        View v = inflater.inflate(R.layout.inquiry_fragment, container, false);

        Plan1Fragment frag = new Plan1Fragment();
        getChildFragmentManager().beginTransaction()
            .replace(R.id.contentFrame, frag).commit();

        return v;
    }

}

以上です。

于 2014-01-05T18:44:31.933 に答える
1

stackoverflow を調べた結果、自分で解決しました。これは、ネストされたフラグメントの問題に関連するものです。xml のマップ フラグメントを削除し、フレームを配置してから、プログラムでフラグメントを追加しました。それは魅力のように機能します。ご尽力いただきありがとうございます。

于 2013-10-01T15:50:39.123 に答える
0

アプリケーションの AndroidManifest.xml ファイルを編集し、要素内に次の宣言を追加します。これにより、アプリがコンパイルされた Google Play サービスのバージョンが埋め込まれます。

<meta-data
    android:name="com.google.android.gms.version"
    android:value="@integer/google_play_services_version" />

->これで解決しました。

于 2013-11-27T15:11:56.237 に答える
0

xmlns:android="http://schemas.android.com/apk/res/android"Linear Layoutタグ を入れる代わりに、タグに入れ<com.google.android.gms.ads.AdViewます。以下に示すように:

 <com.google.android.gms.ads.AdView 
        xmlns:ads="http://schemas.android.com/apk/res-auto"
        android:id="@+id/adView1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        app:adSize="SMART_BANNER"
        app:adUnitId="ca-app-pub-9766031373541061/3761995838"
        app:loadAdOnCreate="true"
        app:testDevices="TEST_EMULATOR, TEST_DEVICE_ID" />

さらに支援が必要な場合は、このリンクにアクセスしてください

于 2015-05-23T19:02:17.080 に答える
0
// try this way

public class MapTabMainFragment extends FragmentActivity {

    private AdView adView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.fragment_map_main);
        adView = (AdView) findViewById(R.id.adView1);
        AdRequest re = new AdRequest();
        adView.loadAd(re);

    }

}
于 2013-10-01T04:35:53.433 に答える
0

BaseFragment クラスで実際に作成される前に、アクティビティにアクセスしようとしています...

mActivity = (BottomTabActivity) this.getActivity();

代わりに、「onActivityCreated」メソッドをオーバーライドして、そこで実行します...

@Override
public void onActivityCreated(Bundle savedInstanceState)
{
    mActivity = (BottomTabActivity) this.getActivity();
}
于 2013-11-14T05:52:09.070 に答える