summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/AndroidStatusBarColor.cs
blob: 91d409da5c844c153469399e6408dcb83f08f2e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
using Xamarin.Forms.CustomAttributes;
using Xamarin.Forms.Internals;

namespace Xamarin.Forms.Controls.Issues
{
	[Preserve(AllMembers = true)]
	[Issue(IssueTracker.None, 5553226, "Set status bar color on Android", PlatformAffected.Android)]
	public class AndroidStatusBarColor : TestContentPage
	{
		public const string Message = "ChangeStatusBarToRed";

		protected override void Init()
		{
			var layout = new StackLayout
			{
				HorizontalOptions = LayoutOptions.Fill,
				VerticalOptions = LayoutOptions.Fill,
				Margin = new Thickness(100)
			};

			var instructions = new Label
			{
				Text =
					"Tapping the button below should change the status bar color to red. If the status bar does not change to red, the test has failed. (Ignore this test for pre-Lollipop devices.)"
			};

			var button = new Button { Text = "Change Status Bar Color" };

			button.Clicked += (sender, args) => { MessagingCenter.Send(this, Message); };

			layout.Children.Add(instructions);
			layout.Children.Add(button);

			Content = layout;
		}
	}
}