FragmentActivity を拡張しないクラスから Fragment を起動する必要がある Android アプリケーションを開発しています。サポート v4 パッケージを使用しています。現在のクラスでコンテキストを取得します。現在のコンテキストから FragmentManager オブジェクトを作成する方法を教えてくれる人はいますか?
public ToolBarGenerator(Context c)
{
context = c;
}
FragmentManager fm = (FragmentActivity)context.getSupportFragmentManager(); //getting error at this line.
//Called like the above
new ToolBarGenerator(getActivity())