调整大小后Android上的ScrollView无法呈现

时间:2018-10-29 21:38:21

标签: android nativescript vue-nativescript

创建简单的聊天

<Page
 actionBarHidden="true"
> 
 <GridLayout columns="*" rows="1*,8*,1*">
  <StackLayout row="0" class="form"  background="#FAE379" >
   <Label class="lbl-menu" fontSize="20" marginBottom="1%" @tap="$navigateBack">
    <FormattedString>
     <Span fontSize="15">{{'fa-chevron-left' | fonticon}}</Span>
     <Span fontSize="20" class="txt-btn">     Test</Span>
    </FormattedString>
   </Label>
  </StackLayout>

  <ScrollView  row ="1" id="myScroller">
   <StackLayout >
    <StackLayout v-for="(m,i) in messages" :key="i" marginTop="30">
     <StackLayout class="card-chat-msg-o" v-if="m.u">
      <StackLayout>
       <Label class="card-chat-text-o"  textWrap="true" :text="m.txt"/>
      </StackLayout>
     </StackLayout>
     <StackLayout class="card-chat-msg-u" v-else>
      <StackLayout>
       <Label class="card-chat-text-u"  textWrap="true" :text="m.txt"/>
      </StackLayout>
     </StackLayout>
    </StackLayout>
   </StackLayout >
  </ScrollView  >

  <GridLayout row ="2" columns="1*,8*,1*" rows="*" borderColor="#F1F1F1" borderWidth="2%">
   <Label col="0" class="fa" fontSize="30">{{'fa-paperclip' | fonticon}}</Label>
   <TextView col="1" editable="true" v-model="message" hint="Enter message" autocorrect="true"/>
   <Label col="2" class="fa" fontSize="30" @tap="sendMessage()">{{'fa-play' | fonticon}}</Label>
  </GridLayout>

 </GridLayout>
</Page>

当我将TextView,android的显示键盘,ScrollView的一部分重叠并且消息的底部没有显示时

之后,我在邮件中推送新项目

ScrollView仅纠正正确位置的新消息,其他未显示的消息

https://yadi.sk/i/R7F7sELLYZAREw

ListView也有类似的问题

https://play.nativescript.org/?template=play-vue&id=5jP4yP

1 个答案:

答案 0 :(得分:1)

好像您的布局有问题,在我看来您嵌套的布局太多了。我建立了一个类似的example here,它可以在屏幕上显示相对较少的UI元素的情况下为您提供所需的内容。

除了嵌套布局,我建议您

  • 尽可能避免基于百分比的测量。默认情况下,所有测量都将使用密度无关的像素,这在大多数情况下都适用。
  • ActionBar通常是一个固定元素,不会根据屏幕高度增加其大小。因此,即使放置自定义视图,也不必保持动态高度。

详细了解layouts here