[android] Review fixes

This commit is contained in:
Roman Romanov 2017-05-24 07:59:17 +04:00
parent a3022e007f
commit 1d1a206f97
2 changed files with 7 additions and 29 deletions

View file

@ -18,7 +18,6 @@ import android.support.v4.app.DialogFragment;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentTransaction;
import android.support.v7.app.AlertDialog;
import android.support.v7.widget.Toolbar;
import android.text.TextUtils;
@ -626,27 +625,6 @@ public class MwmActivity extends BaseMwmFragmentActivity
}
}
public void detachMap(@NonNull FragmentTransaction transaction)
{
if (mMapFragment == null)
return;
transaction.remove(mMapFragment);
mMapFragment = null;
}
public void attachMap()
{
if (mMapFragment != null)
return;
mMapFragment = (MapFragment) MapFragment.instantiate(this, MapFragment.class.getName(), null);
getSupportFragmentManager()
.beginTransaction()
.replace(R.id.map_fragment_container, mMapFragment, MapFragment.class.getName())
.commit();
}
private void initNavigationButtons()
{
View frame = findViewById(R.id.navigation_buttons);

View file

@ -54,7 +54,7 @@ public class UpdaterDialogFragment extends BaseMwmDialogFragment
@Nullable
private String[] mOutdatedMaps;
@Nullable
private BaseNewsFragment.NewsDialogListener mDoneTask;
private BaseNewsFragment.NewsDialogListener mDoneListener;
@NonNull
private final MapManager.StorageCallback mStorageCallback = new MapManager.StorageCallback()
@ -126,8 +126,8 @@ public class UpdaterDialogFragment extends BaseMwmDialogFragment
private void finish()
{
dismiss();
if (mDoneTask != null)
mDoneTask.onDialogDone();
if (mDoneListener != null)
mDoneListener.onDialogDone();
}
@NonNull
@ -167,7 +167,7 @@ public class UpdaterDialogFragment extends BaseMwmDialogFragment
};
public static boolean showOn(@NonNull FragmentActivity activity,
@Nullable BaseNewsFragment.NewsDialogListener doneTask)
@Nullable BaseNewsFragment.NewsDialogListener doneListener)
{
final FragmentManager fm = activity.getSupportFragmentManager();
if (fm.isDestroyed())
@ -205,7 +205,7 @@ public class UpdaterDialogFragment extends BaseMwmDialogFragment
final UpdaterDialogFragment fragment = new UpdaterDialogFragment();
fragment.setArguments(args);
fragment.mDoneTask = doneTask;
fragment.mDoneListener = doneListener;
FragmentTransaction transaction = fm.beginTransaction()
.setCustomAnimations(android.R.anim.fade_in, android.R.anim.fade_out);
fragment.show(transaction, UpdaterDialogFragment.class.getName());
@ -285,8 +285,8 @@ public class UpdaterDialogFragment extends BaseMwmDialogFragment
if (MapManager.nativeIsDownloading())
MapManager.nativeCancel(CountryItem.getRootId());
if (mDoneTask != null)
mDoneTask.onDialogDone();
if (mDoneListener != null)
mDoneListener.onDialogDone();
super.onCancel(dialog);
}