私は1つの活性とトウフラグメントを持っています。アプリケーションが起動すると、フラグメント1をアクティビティにロードします。フラグメントを別のフラグメントに置き換えます
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment_place"
android:layout_width="match_parent"
android:layout_height="match_parent">
</FrameLayout>
</LinearLayout>
フラグメント1にボタンがあり、クリックしたときにフラグメントトウ(ロード親フラグメントコンテナ)に置き換えます。フラグメント1とトウのレイアウトは、次のようになります。
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/replace"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Replace" />
</FrameLayout>
エラーが発生し、アプリケーションが停止します。このようにすることは可能ですか?
問題は何ですか? – F43nd1r
@ F43nd1r質問を編集しました。 –
今質問があります。しかし、あなたの問題に関する情報はまったくありません。コードとスタックトレースが必要です。 http://stackoverflow.com/help/how-to-ask – F43nd1r