我正在处理聊天应用程序,我想在用户滚动到消息列表顶部时显示消息。
这是我的活动屏幕: Current appearance
红色矩形是消息的列表视图,绿色矩形是我想在列表的第一个项目之前显示的消息(TextView)。
现在Textview在xml布局中,所以它"覆盖"列表视图(也就是说,我希望它在列表视图滚动时消失)。
有我的xml代码:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table class="table table-bordered" id="table">
<thead>
<tr>
<th>Time</th>
<th>Header</th>
<th>Header</th>
<th>Header</th>
</tr>
</thead>
<tbody>
<tr>
<td id="time" data-default="00:00">48:25</td>
<td>Data</td>
<td>Data</td>
<td>Data</td>
</tr>
</tbody>
</table>
<button type="button" class="btn btn-block btn-danger" id="reset">Reset</button>
如何制作Textview&#34;滚动&#34;使用Listview?
谢谢!
答案 0 :(得分:0)
只需将标题视图添加到列表视图中即可解决您的问题