如何设置ListView显示在屏幕最上方的item
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何设置ListView显示在屏幕最上方的item相关的知识,希望对你有一定的参考价值。
我使用setSelection没有任何效果我想设置当前ListView的最上方显示第一条item然后把headerView给隐藏掉。
参考技术A 可以很负责告诉大家,那个控件是有这样一个问题的。当里面的数据项没有达到需要滚动条时。headerview就会显示出来,select(1)也没用。因为没有滚动条,它不能定位到第2个项上来。我使用的办法是改headerivew的padding值。。。但有点小瑕疵是会留下一个4、5像素高的横条。 参考技术B 我之前就是用setSelection显示第一条把headerview隐藏上去。估计不是setSelection的问题,是其他问题造成的。 参考技术C setSelection 只会确保把item滚动可视区域,requestFocus 会改变item的selected状态 参考技术D 不是有个pulltorefreshlistview就是这么实现的啊,你可以看一下源码Listview或者GridView嵌套在ScrollView中只显示一行item解决方法。
页面里有ListView(GridView)和一些固定布局让他们一起在整个屏幕上滚动方法:
(1)自定义ListView(GridView),重写onMeasure()方法,我以GridView为例(ListView只需要extends ListView)具体代码如下:
package top.ant.view;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.GridView;
public class AntGridView extends GridView {
public AntGridView(Context context) {
super(context);
}
public AntGridView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public AntGridView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
/*重点在这里重写onMeasure()*/
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,
MeasureSpec.AT_MOST);
super.onMeasure(widthMeasureSpec, expandSpec);
}
}
(2)在布局文件中将整个布局放在ScollerView中,要使用的GridView或者ListView使用自定义的HeaderGridView,具体xml代码如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="180dp"
android:background="#00aa00">
</LinearLayout>
<!-- 一定要是自定义View的包名和类名 -->
<top.ant.view.AntGridView
android:id="@+id/ant_live_index_gridview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:numColumns="2">
</top.ant.view.AntGridView>
</LinearLayout>
</ScrollView>
</LinearLayout>
以上是关于如何设置ListView显示在屏幕最上方的item的主要内容,如果未能解决你的问题,请参考以下文章
android的ListView中如何设置长按Item的时候该Item背景变色
flutter listview item滚出屏幕不重置状态