forked from organicmaps/organicmaps
Fixes.
This commit is contained in:
parent
4a8afc148d
commit
6001dbfe98
3 changed files with 7 additions and 3 deletions
|
@ -49,7 +49,9 @@
|
|||
|
||||
<style name="MWMMain" parent="@style/AppTheme"/>
|
||||
|
||||
<style name="MWMMain.NoBar" parent="Theme.AppCompat.Light.NoActionBar"/>
|
||||
<style name="MWMMain.NoBar" parent="Theme.AppCompat.Light.NoActionBar">
|
||||
<item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
|
||||
</style>
|
||||
|
||||
<style name="MwmSearch" parent="@style/MWMMain">
|
||||
<item name="android:windowNoTitle">true</item>
|
||||
|
|
|
@ -117,8 +117,7 @@ public class DownloadFragment extends MWMListFragment implements View.OnClickLis
|
|||
}
|
||||
else
|
||||
{
|
||||
// FIXME
|
||||
// Always show map as parent
|
||||
getActivity().getSupportFragmentManager().popBackStack();
|
||||
startActivity(new Intent(getActivity(), MWMActivity.class));
|
||||
}
|
||||
return false;
|
||||
|
|
|
@ -917,6 +917,7 @@ public class MWMActivity extends NvEventQueueActivity
|
|||
UiUtils.invisible(mVerticalToolbar);
|
||||
|
||||
mFadeView = findViewById(R.id.fade_view);
|
||||
Log.d("TEST", "Set up tob ");
|
||||
|
||||
final Toolbar toolbar = (Toolbar) mVerticalToolbar.findViewById(R.id.toolbar);
|
||||
if (toolbar != null)
|
||||
|
@ -999,6 +1000,8 @@ public class MWMActivity extends NvEventQueueActivity
|
|||
{
|
||||
super.onNewIntent(intent);
|
||||
|
||||
Log.d("TEST", "onnewintent");
|
||||
fadeMap(0, 0);
|
||||
if (intent != null)
|
||||
{
|
||||
if (intent.hasExtra(EXTRA_TASK))
|
||||
|
|
Loading…
Add table
Reference in a new issue