我正在使用Xamarin.Forms,我想在TableView中放置一些控件。其中一个是SearchBar,它位于ViewCell中。
我在我的Android手机中测试了这个,它不允许我从键盘输入,我点击它并且它不带键盘。
也许是bug或我在SearchBar中使用了错误的Cell类型。
<ContentPage.Content>
...
<TableView>
<TableRoot>
<TableSection Title="Cliente">
<ViewCell>
<SearchBar x:Name="txtBusquedaCliente" Placeholder="Seleccione..." />
</ViewCell>
<SwitchCell x:Name="swFormato" Text="Shor Format: " ></SwitchCell>
</TableSection>
...
</TableView>
...
</ContentPage.Content>