public class MainActivity extends Activity implements MainMenuFragment.OnMainMenuItemSelectedListener {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
FragmentManager fragmentManager = getFragmentManager();
FragmentTransaction fragmentTransaction = fragmentManager
.beginTransaction();
// add menu fragment
MainMenuFragment myFragment = new MainMenuFragment();
fragmentTransaction.add(R.id.menu_fragment, myFragment);
//add content
DetailPart1 content1= new DetailPart1 ();
fragmentTransaction.add(R.id.content_fragment, content1);
fragmentTransaction.commit();
}
public void onMainMenuSelected(String tag) {
//next menu is selected replace existing fragment
}
Muszę wyświetlić obok siebie dwa widoki list, menu po lewej i jego zawartość po prawej stronie. Domyślnie wybrane jest pierwsze menu, a jego zawartość jest wyświetlana po prawej stronie. Fragment, który wyświetla zawartość, jest następujący:
public class DetailPart1 extends Fragment {
ArrayList<HashMap<String, String>> myList = new ArrayList<HashMap<String, String>>();
ListAdapter adap;
ListView listview;
@Override
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
if(savedInstanceState!=null){
myList = (ArrayList)savedInstanceState.getSerializable("MYLIST_obj");
adap = new LoadImageFromArrayListAdapter(getActivity(),myList );
listview.setAdapter(adap);
}else{
//get list and load in list view
getlistTask = new GetALLListTasks().execute();
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.skyview_fragment, container,false);
return v;
}
@Override
public void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
outState.putSerializable("MYLIST_obj", myList );
}
}
OnActivityCreated i onCreateView są wywoływane dwukrotnie . Istnieje wiele przykładów użycia fragmentów. Ponieważ jestem początkującym w tym temacie, nie mogę odnieść tego przykładu do mojego problemu. Potrzebuję niezawodnego sposobu radzenia sobie ze zmianą orientacji. NIE zadeklarowałem android:configChanges
w pliku manifestu. Potrzebuję działania zniszczenia i odtworzenia, aby móc używać innego układu w trybie poziomym.
android
android-fragments
android-orientation
user1811741
źródło
źródło
Odpowiedzi:
Za każdym razem, gdy obracasz ekran w swojej aktywności, tworzysz nowy fragment,
onCreate();
ale jednocześnie zachowujesz staresuper.onCreate(savedInstanceState);
. Więc może ustaw tag i znajdź fragment, jeśli istnieje, lub przekaż pakiet zerowy do super.Zajęło mi to trochę czasu, aby się tego nauczyć i może to być naprawdę dziwne, gdy pracujesz z takimi rzeczami, jak przeglądarka.
Polecam przeczytać o fragmentach dodatkowy czas, ponieważ omawiamy dokładnie ten temat.
Oto przykład postępowania z fragmentami przy zwykłej zmianie orientacji:
Aktywność :
public class MainActivity extends FragmentActivity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); if (savedInstanceState == null) { TestFragment test = new TestFragment(); test.setArguments(getIntent().getExtras()); getSupportFragmentManager().beginTransaction().replace(android.R.id.content, test, "your_fragment_tag").commit(); } else { TestFragment test = (TestFragment) getSupportFragmentManager().findFragmentByTag("your_fragment_tag"); } } }
Fragment :
public class TestFragment extends Fragment { public static final String KEY_ITEM = "unique_key"; public static final String KEY_INDEX = "index_key"; private String mTime; @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.fragment_layout, container, false); if (savedInstanceState != null) { // Restore last state mTime = savedInstanceState.getString("time_key"); } else { mTime = "" + Calendar.getInstance().getTimeInMillis(); } TextView title = (TextView) view.findViewById(R.id.fragment_test); title.setText(mTime); return view; } @Override public void onSaveInstanceState(Bundle outState) { super.onSaveInstanceState(outState); outState.putString("time_key", mTime); } }
źródło
Dobre wytyczne dotyczące zachowywania danych między zmianami orientacji a odtwarzaniem aktywności można znaleźć w wytycznych dotyczących systemu Android .
Podsumowanie:
spraw, aby twój fragment był zachowany:
setRetainInstance(true);
Utwórz nowy fragment tylko w razie potrzeby (lub przynajmniej weź z niego dane)
dataFragment = (DataFragment) fm.findFragmentByTag("data"); // create the fragment and data the first time if (dataFragment == null) {
źródło