Я деляю приложение с фрагментом. Моя проблема в том, что когда я нажал кнопку «Назад», с любого экрана приложение закрывается. Приложение отображает ожидаемый макет, но немедленно закрывается. Это код моего фрагмента, который включает кнопку.onBackPressed Андроид
public class LoginFragment extends android.support.v4.app.Fragment implements View.OnClickListener, OnBackPressed{
private StatusFragment.StatusListener statusListener;
public static LoginFragment newInstance() {return new LoginFragment();}
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View layout = inflater.inflate(R.layout.fragment_login, container, false); //este fragment_profile se muestra
Button go_login=(Button)layout.findViewById(R.id.button_gologin);
go_login.setOnClickListener(this);
Button go_registration=(Button)layout.findViewById(R.id.button_goregistration);
go_registration.setOnClickListener(this);
return layout;
}
@Override
public void onBackPressed() {
//on Back Pressed
}
@Override
public void onDetach() {
super.onDetach();
statusListener = null;
}
@Override
public void onClick(View v)
{
switch (v.getId()){
case R.id.button_gologin:{
Model model=(Model)getActivity().getApplicationContext();
EditText text_log = (EditText)getActivity().findViewById(R.id.editText_user);
EditText text_pass = (EditText)getActivity().findViewById(R.id.editText_pass);
model.sendLogin(text_log.getText().toString(),text_pass.getText().toString());
model.isPasswordCorrect();
break;
}
Тогда мы имеем MainActivity
public class MainActivity extends FragmentActivity implements AccountFragment.OnFragmentInteractionListener,
StatusFragment.StatusListener, ObserverModel {
}
private void showLogin() {
LoginFragment fragment = (LoginFragment) fragmentManager.findFragmentByTag(LOGIN_FRAGMENT);
if (fragment == null) {
Log.d(TAG, "Открываем статус");
} else {
Log.d(TAG, "Статус открыт");
}
android.support.v4.app.FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
transaction.replace(R.id.container, loginFragment, LOGIN_FRAGMENT).addToBackStack(STATUS);
transaction.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_CLOSE);
transaction.addToBackStack(null);
transaction.commit();
}
@Override
public void onBackPressed() {
Fragment currentFragment = getSupportFragmentManager().getFragments().get(getSupportFragmentManager().getBackStackEntryCount() - 1);
if (currentFragment instanceof OnBackPressed) {
((OnBackPressed) currentFragment).onBackPressed();
} else {
super.onBackPressed();
}
}
Где проблема? Я читал других, пишущих similars, но не могу найти для этого решения. Благодаря
я думаю, что некоторые проблемы с этой строки ===> transaction.replace (R.id.container, loginFragment, LOGIN_FRAGMENT) .addToBackStack (STATUS); где вы определили «loginFragment» ??? Исправьте меня, если я ошибаюсь! – Darsh
общественного класса MainActivity расширяет FragmentActivity реализует AccountFragment.OnFragmentInteractionListener, StatusFragment.StatusListener, ObserverModel { LoginFragment loginFragment = новый LoginFragment() окончательный статическую строку LOGIN_FRAGMENT = "Войти"; – baldcl
Добавить super.onBackНаписано в else в FragmentActivity, и ваша проблема решена. –