空想アプリを作成しようとしていますが、DreamService クラス内でのフラグメントの使用に関するドキュメントが見つからないようです。
私の意図は、XML ファイルでフレームを使用することでした。
<FrameLayout
android:id="@+id/content_frag"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
/>
次に FragmentManager を使用して、フラグメントをフレームに追加します。
public void onAttachedToWindow( )
{
setContentView(R.layout.daydream);
getFragmentManager().beginTransaction().replace(R.id.content_frag, new ContentFragment(), "ContentFragment")
.commit();
super.onAttachedToWindow();
}
「getFragmentManager()」または DreamService 内に同等の機能がないようです。したがって、これは可能ですか?どうすればよいですか?
ありがとう