1

この記事が最も役に立った/役に立たなかった:1つのアクティビティでフラグメントを切り替える

同じ問題があるかどうかはわかりません。そのため、コードを投稿して、これも間違った方法で行われているかどうかを確認しています。上記の解決策は、フラグメントが不要になると私が感じる方法を使用して問題を解決しているようです。まだ非常に新しいですが、私の論理が間違っていることは非常によくあります。とにかくここに私の問題があります:

画面が表示され、青いピルまたは赤いピルの2つの選択肢が表示されます(これらの2つのボタンはフラグメントに含まれています)。赤いピルを選択すると、新しいフラグメントが既存のフラグメントを「You stay in wonderland ...」というテキストに置き換えます。青いピルを選択すると、フラグメントが既存のフラグメントを「Thestoryends...」というテキストに置き換えます。

これは、私が今のところ自分自身に断片を教えるために使用している例にすぎません。

1つのアクティビティ1つのレイアウト3つのフラグメントがあります。

私の活動:

package com.example.learn.fragments;

import android.app.Activity;
import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.View;
import android.view.ViewGroup;

public class MainActivity extends Activity {

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

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }

    /* Add a class to handle fragment */
    public static class SSFFragment extends Fragment {
        @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container,
                Bundle savedInstanceState) {
            // Inflate the layout for this fragment
            View v = inflater.inflate(R.layout.choose_pill_frag, container,
                    false);
            return v;
        }
    }

    public void red(View view) {
        // Change fragment code here?
    }

    public void blue(View view) {
        // Change fragment code here?
    }

}

私のレイアウト:

<RelativeLayout 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" >

    <fragment
        android:id="@+id/frag"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        class="com.example.learn.fragments.MainActivity$SSFFragment" />

</RelativeLayout>

開始フラグメント:

<RelativeLayout 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" >

    <ImageButton
        android:id="@+id/imageButton1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:onClick="blue"
        android:src="@drawable/blue" />

    <ImageButton
        android:id="@+id/imageButton2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:onClick="red"
        android:src="@drawable/red" />

</RelativeLayout>

ブルーピルフラグ:

<RelativeLayout 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" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:text="The story ends, you wake up in your bed and believe whatever you want to believe."
        android:textAppearance="?android:attr/textAppearanceLarge" />

</RelativeLayout>

赤いピルの断片:

<RelativeLayout 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" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:text="You stay in Wonderland and I show you how deep the rabbit-hole goes."
        android:textAppearance="?android:attr/textAppearanceLarge" />

</RelativeLayout>

問題

1:私はこれをこのように行うべきですか?

2:これを完了するために使用する適切なコードは何ですか?FragmentTransaction?

4

2 に答える 2

1

上記の解決策は、フラグメントが不要になると私が感じる方法を使用して問題を解決するようです。

あなたが投稿したリンクは、フラグメントを完全に回避しているとは思いません。フラグメントは、xml ファイル (この場合は永続的) または FragmentTransactions を使用するコード (この場合、フラグメントを追加、削除できます) で指定できます。

public void red(View view) {
    // Change fragment code here?
}

public void blue(View view) {
    // Change fragment code here?
}

ここで onClickListeners を画像ボタンにリンクしたいと思います。それらの中でFragmentTransaction add/remove/swapsを呼び出します。

于 2012-07-21T04:05:22.117 に答える
0

これを見てください。

私は断片について間違って行っていたようです。

フラグメントの交換が機能していません/これを適切な方法で実行していますか?

于 2012-08-10T08:07:12.997 に答える