この記事が最も役に立った/役に立たなかった: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?