我和Xamarin有一个交叉项目,
在Android或Android TV上,我无法使用遥控器或dPad在触摸屏上选择项目(触摸屏都可以正常工作)。
<ListView x:Name="CategoriesListView" HasUnevenRows="True"
ItemsSource="{ Binding Categories }">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<StackLayout Orientation="Horizontal">
<StackLayout VerticalOptions="StartAndExpand" HorizontalOptions="Center" >
<Label x:Name="CategoryItem" HorizontalOptions="Start" VerticalOptions="Center" TextColor="White" FontAttributes="Bold" FontSize="Small"
Text="{Binding CategoryName}"/>
</StackLayout>
</StackLayout>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
谢谢!