1 つのフラグメント コンテナーを使用して、HoloEverywhere で構築された単純なアクティビティがあります。ListFragment は開始時にそこに表示され、通常どおり表示されます。次に、リスト項目をクリックして、ListFragment を別のフラグメントに置き換え、バックスタックに追加します。しかし、戻るボタンを押すと、正常に再開されますが、リストは空になります。いくつかのコードがあります:
アクティビティ
public class MainActivity extends Activity implements SongsFragment.IActivityCallback {
public final static String TAG = "Lyrics";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Log.i(TAG, "STarted.");
setContentView(R.layout.frags);
}
@Override
public void itemSelected(int id) {
Log.d(TAG, "itemSelected");
LyricsFragment lyrics = new LyricsFragment();
if(findViewById(R.id.frag_frame) != null) {
Bundle args = new Bundle();
args.putInt("id", id);
lyrics.setArguments(args);
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
transaction.replace(R.id.frag_frame, lyrics);
transaction.addToBackStack(null);
transaction.commit();
}
}
}
フラグメントのレイアウト:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/frag_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<fragment
android:id="@+id/fragment1"
android:name="android.app.ListFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.anth.lyrics.SongsFragment"
tools:layout="@layout/song_fragment" />
</FrameLayout>
歌詞フラグメント:
public class LyricsFragment extends Fragment {
...
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
this.container = container;
View ret = inflater.inflate(R.layout.lyricsview, container, false);
return ret;
}
...
曲のフラグメント:
public class SongsFragment extends ListFragment {
private IActivityCallback callback;
private ArrayList<Song> songs;
final static String TAG = "SOng Fragment";
public interface IActivityCallback {
public void itemSelected(int id);
}
@Override
public void onListItemClick(ListView l, View v, int position, long id) {
TextView t_id = (TextView) v.findViewById(R.id.song_id);
int s_id = Integer.valueOf( t_id.getText().toString() );
Log.d(TAG, "Select item");
callback.itemSelected(s_id);
super.onListItemClick(l, v, position, id);
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
callback = (IActivityCallback) getActivity();
DBRead db = new DBRead(getActivity());
songs = db.getLast(10);
db.close();
SongListAdapter adapt = new SongListAdapter(getActivity(), R.layout.songs_item, songs);
setListAdapter(adapt);
}
}
2.3.3 と 4.0.4 でテストしましたが、結果は同じでした。では、それを適切に機能させるにはどうすればよいでしょうか。