使用片段的动态方式

时间:2013-10-31 10:57:04

标签: android android-fragments

I am referring to this video tutorial here ---- CLICK HERE


我在视频中使用了以下代码


他正在使用动态处理片段的方式

MainActivity.java

package com.example.simpledynamicfragment;

import android.os.Bundle;
import android.app.Activity;
import android.support.v4.app.FragmentManager;
import android.app.Fragment;

import android.view.Menu;

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        FragmentActivity frag=new FragmentActivity();
        FragmentManager FM = getSupportFragmentManager();       


    }


}

我收到了行::

的错误
FragmentManager FM = getSupportFragmentManager();
  • 我知道我们需要扩展片段类,但在视频中是扬声器 用于扩展活动。他如何在没有的情况下完成任务 遇到错误。

  • 我在做错了

注意 ::我正在使用片段支持包

错误 :: The method getSupportFragmentManager() is undefined for the type MainActivity

如何澄清&明确我的怀疑......任何指导都会有所帮助

1 个答案:

答案 0 :(得分:4)

请将extends Activity替换为extends FragmentActivity,此帮助。

编辑:

视频播放器不构建项目,如果他构建并运行,他将得到相同的错误。