无法使用dPad(或遥控器)在ListView中导航/选择

时间:2018-10-03 16:32:06

标签: android listview xamarin xamarin.forms xamarin.android

我和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>

谢谢!

0 个答案:

没有答案