2016-05-09 119 views
3
<?xml version="1.0" encoding="UTF-8"?> 
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" 
     xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" 
     x:Class="Dh.ListPage"> 
<ContentPage.Content> 
    <ScrollView> 
     <StackLayout Style="{StaticResource MainStackLayoutWhenLoggedInStyle}"> 
      <Frame Style="{StaticResource FrameStyle2}"> 
       <StackLayout> 
        <Label Text="Vragenlijsten" Style="{StaticResource TitelLabelStyle}" /> 
       </StackLayout> 
      </Frame> 
      <Frame Style="{StaticResource FrameStyle2}"> 
       <StackLayout> 
        <Label Text="DRINGENDE VRAGEN: vul deze vragen meteen in!" Style="{StaticResource StandardLabelStyle}"/> 
        <Frame Style="{StaticResource FrameStyle2}"> 
         <StackLayout Style="{StaticResource ListViewStackLayoutStyle}" > 
          <ListView ItemTapped="OnItemTapped" ItemsSource="{Binding Question_Lists}" Style="{StaticResource StandardListViewStyle}"> 
           <ListView.ItemTemplate> 
            <DataTemplate> 
             <ViewCell> 
              <ViewCell.View> 
               <Label Text="{Binding Title}" Style="{StaticResource StandardLabelStyle}" /> 
              </ViewCell.View> 
             </ViewCell> 
            </DataTemplate> 
           </ListView.ItemTemplate> 
          </ListView> 
         </StackLayout> 
        </Frame> 
       </StackLayout> 
      </Frame> 
     </StackLayout> 
    </ScrollView> 
</ContentPage.Content> 

Xamarin窗体ListView滚动型不滚动

当我的屏幕太小,那么我的列表视图并不想滚动。如果我的屏幕不是很小,那么listview就会滚动。有人可以帮我吗?

回答

4

从不在一个ScrollView中堆叠一个ListView,因为两者都至少在Android上实现滚动。

+0

我的屏幕太小时,如何让屏幕滚动? –

+0

有不同的选项,例如,您可以在StackLayout中使用ScrollView,然后将上面/下面的内容设置为ListView的页眉/页脚。 –

+0

XF没有提供'ItemsControl'选项是很愚蠢的。 – Shimmy