Revert "Revert "[Android] Fix warnings (#346)""

This reverts commit 6fa569cfda.
This commit is contained in:
Rui Marinho 2016-09-13 22:52:47 +01:00
Родитель 170f165bb2
Коммит e6a2bed3b2
3 изменённых файлов: 7 добавлений и 10 удалений

Просмотреть файл

@ -414,10 +414,6 @@ namespace Xamarin.Forms.Platform.Android
{
_busyCount = Math.Max(0, enabled ? _busyCount + 1 : _busyCount - 1);
if (!Forms.SupportsProgress)
return;
SetProgressBarIndeterminate(true);
UpdateProgressBarVisibility(_busyCount > 0);
}
@ -491,8 +487,10 @@ namespace Xamarin.Forms.Platform.Android
{
if (!Forms.SupportsProgress)
return;
#pragma warning disable 612, 618
SetProgressBarIndeterminate(true);
SetProgressBarIndeterminateVisibility(isBusy);
#pragma warning restore 612, 618
}
internal class DefaultApplication : Application

Просмотреть файл

@ -243,11 +243,6 @@ namespace Xamarin.Forms.Platform.Android
MessagingCenter.Subscribe(this, Page.BusySetSignalName, (Page sender, bool enabled) =>
{
busyCount = Math.Max(0, enabled ? busyCount + 1 : busyCount - 1);
if (!Forms.SupportsProgress)
return;
SetProgressBarIndeterminate(true);
UpdateProgressBarVisibility(busyCount > 0);
});
@ -338,7 +333,10 @@ namespace Xamarin.Forms.Platform.Android
{
if (!Forms.SupportsProgress)
return;
#pragma warning disable 612, 618
SetProgressBarIndeterminate(true);
SetProgressBarIndeterminateVisibility(isBusy);
#pragma warning restore 612, 618
}
internal class DefaultApplication : Application

Просмотреть файл

@ -201,6 +201,7 @@ namespace Xamarin.Forms.Platform.Android
base.OnReceivedError(view, request, error);
}
[Obsolete]
public override bool ShouldOverrideUrlLoading(AWebView view, string url)
{
if (_renderer.Element == null)