This repository has been archived by the owner on May 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue 15647: Fix selecting of an item in an Android ListView (#15660)
- Loading branch information
Showing
3 changed files
with
92 additions
and
1 deletion.
There are no files selected for viewing
90 changes: 90 additions & 0 deletions
90
Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Issue15647.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
using Xamarin.Forms.CustomAttributes; | ||
using Xamarin.Forms.Internals; | ||
using System.Collections.ObjectModel; | ||
using System; | ||
|
||
#if UITEST | ||
using Xamarin.Forms.Core.UITests; | ||
using Xamarin.UITest; | ||
using NUnit.Framework; | ||
#endif | ||
|
||
namespace Xamarin.Forms.Controls.Issues | ||
{ | ||
#if UITEST | ||
[Category(UITestCategories.ManualReview)] | ||
#endif | ||
[Preserve(AllMembers = true)] | ||
[Issue(IssueTracker.Github, 15647, "[Bug] Android ListView SelectedItem highlighting", PlatformAffected.Android)] | ||
public class Issue15647 : TestContentPage | ||
{ | ||
protected override void Init() | ||
{ | ||
ViewModelIssue15647 viewModelIssue15647 = new ViewModelIssue15647(); | ||
|
||
Label testInstructionsLabel = new Label() | ||
{ | ||
HorizontalTextAlignment = TextAlignment.Center, | ||
Padding = new Thickness(3.0), | ||
Text = "Click on the buttons to select the first or second item of the ListView." + Environment.NewLine + | ||
"The correct item has to be marked as selected so that this test is successful.", | ||
}; | ||
|
||
DataTemplate itemDataTemplate = new DataTemplate(() => | ||
{ | ||
Label itemLabel = new Label(); | ||
itemLabel.SetBinding(Label.TextProperty, "."); | ||
return new ViewCell() | ||
{ | ||
View = itemLabel, | ||
}; | ||
}); | ||
ListView itemsListView = new ListView() | ||
{ | ||
// Header = "Header", | ||
ItemTemplate = itemDataTemplate, | ||
}; | ||
itemsListView.SetBinding(ListView.ItemsSourceProperty, nameof(ViewModelIssue15647.Items)); | ||
|
||
Button selectFirstItemButton = new Button() | ||
{ | ||
Text = "Select first item", | ||
}; | ||
selectFirstItemButton.Clicked += (_, __) => | ||
{ | ||
Console.WriteLine(itemsListView.SelectedItem); | ||
itemsListView.SelectedItem = viewModelIssue15647.Items[0]; | ||
Console.WriteLine(itemsListView.SelectedItem); | ||
}; | ||
|
||
Button selectSecondItemButton = new Button() | ||
{ | ||
Text = "Select second item", | ||
}; | ||
selectSecondItemButton.Clicked += (_, __) => | ||
{ | ||
Console.WriteLine(itemsListView.SelectedItem); | ||
itemsListView.SelectedItem = viewModelIssue15647.Items[1]; | ||
Console.WriteLine(itemsListView.SelectedItem); | ||
}; | ||
|
||
Content = new StackLayout() | ||
{ | ||
Children = { testInstructionsLabel, selectFirstItemButton, selectSecondItemButton, itemsListView }, | ||
}; | ||
|
||
BindingContext = viewModelIssue15647; | ||
} | ||
} | ||
|
||
[Preserve(AllMembers = true)] | ||
public class ViewModelIssue15647 | ||
{ | ||
public ViewModelIssue15647() | ||
{ | ||
Items = new ObservableCollection<string>() { "first item", "second item" }; | ||
} | ||
|
||
public ObservableCollection<string> Items { get; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters