web-dev-qa-db-ja.com

Android SDKエラー:フラグメントではないクラスをインスタンス化しようとしています

トップメニューと下の変更可能なビューを備えた単純なアプリケーションを作成しようとはほとんどしていません(メニューフラグメントのボタンを押すと、下のフラグメントのビューが変更されます)。したがって、メインビュー内に2つのフラグメントがありますが、エミュレーターでアプリケーションを実行しようとすると、次のようなエラーが発生します。

Cause by Android.app (bla bla bla, piece of crap Eclipse doesn't even allow copying the errors): 
Trying to instantiate a class com.example.Android.topmenu that is not a fragment

だから、これらは私のXMLレイアウトです:

main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
    xmlns:tools="http://schemas.Android.com/tools"
    Android:layout_width="fill_parent"
    Android:layout_height="fill_parent"
    Android:orientation="vertical" >

    <fragment
        Android:id="@+id/menuFragment"
        Android:layout_width="fill_parent"
        Android:layout_height="wrap_content" 
        Android:name="com.example.Android.topmenu" >
    </fragment>

    <fragment
        Android:id="@+id/contentFragment"
        Android:layout_width="fill_parent"
        Android:layout_height="fill_parent"
        Android:name="com.example.Android.bottomcontent" >
    </fragment>

</LinearLayout>

topmenu.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" >

   <Button
       Android:id="@+id/Button1"
       Android:layout_width="wrap_content"
       Android:layout_height="match_parent" />

</LinearLayout>

bottom_content.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:Android="http://schemas.Android.com/apk/res/Android" 
    Android:layout_width="fill_parent"
    Android:layout_height="fill_parent"
    Android:padding="10dp" 
    Android:orientation="vertical">

    <TextView
        Android:id="@+id/textView1"
        Android:layout_width="match_parent"
        Android:layout_height="wrap_content"
        Android:text="@+string/content_text" />

</LinearLayout>

これらはメインアクティビティとフラグメントのクラスです

main_activity

package com.example.Android;

import com.example.Android.R;

import Android.app.Activity;
import Android.content.Context;
import Android.os.Bundle;

public class OLife extends Activity {
@Override
    public void onCreate(Bundle savedInstanceState) {
        // The activity is being created
        super.onCreate(savedInstanceState);
        // Set view
        setContentView(R.layout.main);
    }

    @Override
    protected void onDestroy() {
        super.onDestroy();
        // The activity is about to be destroyed.
        super.onDestroy();

        // Stop method tracing that the activity started during onCreate()
        Android.os.Debug.stopMethodTracing();
    }
}

トップメニュー

package com.example.Android;

import Android.os.Bundle;
import Android.support.v4.app.Fragment;
import Android.view.LayoutInflater;
import Android.view.View;
import Android.view.ViewGroup;

public class OLifeMenu extends Fragment {
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.topmenu, container, false);
        return view;
    }
}

bottomcontent

package com.example.Android;

import Android.app.Activity;
import Android.os.Bundle;
import Android.support.v4.app.Fragment;
import Android.view.LayoutInflater;
import Android.view.View;
import Android.view.ViewGroup;

public class OLifeMain extends Fragment {
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.bottom_content, container, false);
        return view;
    }

    @Override
    public void onAttach(Activity activity) {
        super.onAttach(activity);
    }
}
15
ali

アクティビティメインでサポートフラグメントと複数のフラグメントを使用しているため、FragmentActivityの代わりにActivityを使用する必要があります


編集

Appcompat サポートライブラリを使用し、AppCompatActivityを拡張して、下位APIのツールバーとフラグメントをサポートできるようになりました。

62
Rod_Algonquin

私の場合、私はonCreateで間違った順序で作業を行っていました。

setContentView(R.layout.activity_qr_code_scan);
super.onCreate(savedInstanceState);

の代わりに

super.onCreate(savedInstanceState);
setContentView(R.layout.activity_qr_code_scan);
5
nerdinand

レイアウトでフラグメントを使用しているため、フラグメントまたはフラグメントアクティビティからクラスを拡張することをお勧めします。

1
Zeeshan Ahmed