зеркало из https://github.com/DeGsoft/maui-linux.git
37 строки
1.0 KiB
C#
37 строки
1.0 KiB
C#
using Xamarin.Forms.CustomAttributes;
|
|
using Xamarin.Forms.Internals;
|
|
|
|
#if UITEST
|
|
using Xamarin.UITest;
|
|
using NUnit.Framework;
|
|
#endif
|
|
|
|
namespace Xamarin.Forms.Controls.Issues
|
|
{
|
|
[Preserve(AllMembers = true)]
|
|
[Issue(IssueTracker.Bugzilla, 46494, "Hardware/Software back button from MainPage of type MasterDetail causes crash 'java.lang.IllegalStateException: Activity has been destroyed'", PlatformAffected.Android)]
|
|
public class Bugzilla46494 : TestMasterDetailPage
|
|
{
|
|
protected override void Init()
|
|
{
|
|
Master = new ContentPage { Title = "Master", BackgroundColor = Color.Blue };
|
|
Detail = new NavigationPage(
|
|
new ContentPage
|
|
{
|
|
Title = "Detail",
|
|
BackgroundColor = Color.Red,
|
|
Content = new ContentView
|
|
{
|
|
Content = new Label
|
|
{
|
|
Text = "Hit Back button to destroy Activity. Disposing Fragment should not run into a race condition with Activity destroy.",
|
|
HorizontalTextAlignment = TextAlignment.Center,
|
|
VerticalTextAlignment = TextAlignment.Center
|
|
}
|
|
}
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|