ViewCell内的搜索栏不允许Android中的键盘输入

时间:2016-09-15 21:25:03

标签: xaml xamarin xamarin.forms

我正在使用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>

0 个答案:

没有答案