码迷,mamicode.com
首页 > 其他好文 > 详细

stackFromBottom-listview 内容从底部开始填充

时间:2015-03-18 15:17:52      阅读:7221      评论:0      收藏:0      [点我收藏+]

标签:

今天遇到了一个问题,就是listview虽然占满了整个屏幕,但是,当它的内容只有几条的时候,它会从底部开始显示,上面留有空白。后来进入xml发现,listview有个属性stackFromBottom,就是它决定了listview内容填充方式

 <view class="com.android.mms.ui.MessageListView"
            style="?android:attr/listViewWhiteStyle"
            android:id="@+id/history"
            android:layout_width="match_parent"
            android:layout_height="0dip"
            android:layout_weight="1.0"
            android:smoothScrollbar="true"
           <!--默认为false--
            android:stackFromBottom="false"
            android:visibility="gone"
            android:fadingEdge="none"
            android:layout_marginBottom="1dip"
            android:cacheColorHint="#00000000"
            android:scrollbarAlwaysDrawVerticalTrack="false"
            android:scrollbarStyle="insideOverlay"
            android:paddingBottom="@dimen/input_text_height_adjusted"
            android:transcriptMode="normal"
        />

它的意义就是

stackFromBottom="false":  从上到下依次填充listview

stackFromBottom="true":   从下到上一次填充listvew

 

stackFromBottom-listview 内容从底部开始填充

标签:

原文地址:http://www.cnblogs.com/zhangshuli-1989/p/zhangshuli_stack_150318133.html

(1)
(3)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!