`
enki_ding
  • 浏览: 211143 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

android:fastScrollEnabled和android:drawSelectorOnTop

 
阅读更多

android:fastScrollEnabled="true"

是让ListView出现快速滚动的按钮,一开始,我的记录只有十条,我在拉动的时候都不见出现快速滚动,后来才发现,原因是数据不多的原因,只要数据足够多,才会自动出现的。

 

还有一个属性:android:drawSelectorOnTop

When set to true, the selector will be drawn over the selected item. Otherwise the selector is drawn behind the selected item. The default value is false.

android:drawSelectorOnTop="true"  点击某一条记录,颜色会显示在最上面,记录上的文字被遮住,所以点击文字不放,文字就看不到

android:drawSelectorOnTop="false" 点击某条记录不放,颜色会在记录的后面,成为背景色,但是记录内容的文字是可见的

分享到:
评论

相关推荐

    Android网格视图(GridView)

    15. **android:drawSelectorOnTop**:“false”:这个属性控制选中项的背景显示,设置为false使得被选中的item的颜色不会覆盖内容,文字仍然可见。 至于子元素布局,示例中使用了一个RelativeLayout来包含一个...

    Android之listview属性

    - `android:fadeScrollbars="true"` 开启滚动条的自动隐藏和显示,当ListView滚动时,滚动条会淡入淡出,提供更好的用户体验。 8. **fastScrollEnabled属性**: - `android:fastScrollEnabled="true"` 启用快速...

    Android中文API(123)——AbsListView[文].pdf

    - `android:fastScrollEnabled`: 启用快速滚动滑块,用户可以通过滑动快速浏览列表。 - `android:listSelector`: 指定选中条目的视觉样式。 - `android:scrollingCache`: 开启或关闭滚动缓存,以提高性能,但可能...

    Android_ListView控件基本用法

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> android:id="@+...

    android开发之listView组件用法实例简析

    本篇文章将深入解析ListView组件的使用方法,包括`android:drawSelectorOnTop`属性以及快速滚动滑块的启用。 ### `android:drawSelectorOnTop`属性 `android:drawSelectorOnTop`是ListView的一个样式属性,它决定...

    两年来学android基础的总结

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> android:id="@+...

    Android UI设计 下拉菜单Spinner用法.doc

    - `android:layout_width` 和 `android:layout_height`:确定Spinner的尺寸。 - `android:text`:设置默认显示的文字。 - `android:drawSelectorOnTop="true"`:使选择器(即下拉菜单)显示在Spinner上方,而不是在...

    Android ListView控件基本用法

    * android:drawSelectorOnTop:指定 ListView 控件条目被按下时背景颜色在文字背后。 * android:scrollbars:指定 ListView 控件滚动条的方向。 二、ListView 控件的布局 在上面的代码中,我们可以看到 ListView ...

    ListView项(Item)的三种布局使用例子

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical"> android:id="@+id...

    ListActivity的ListView外添加图片文字

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> <!-- 添加一个全屏...

    Android MediaPlayer 简单综合应用.doc

    android:drawSelectorOnTop="false" /> android:id="@id/android:empty" android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="No songs found on SD Card."/> ``` 核心...

    Android学习笔记(十一):Activity-ListView.doc

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> <!-- 其他UI元素 -...

    android ListView 一些重要属性详解

    在XML布局中,添加`android:fastScrollEnabled="true"`或在代码中调用`setFastScrollEnabled(true)`可启用该功能。注意,只有当滚动内容高度超过屏幕的三倍时,快速滚动滑块才会显示。 9. **drawSelectorOnTop属性*...

    android下拉菜单

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:padding="10dip" android:layout_width="fill_parent" android:layout_height="wrap_...

    Android App中的GridView网格布局使用指南

    10. `android:fastScrollEnabled="true"`:启用快速滚动功能,当内容较多时,会出现一个拇指条,方便快速定位。 11. `android:fadingEdge="none"`:设置衰落边缘颜色为空,缺省值是垂直,可理解为边缘的提示色。 12....

    android 布局

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res/measureapp.measureapp" android:orientation="vertical" android:layout_width=...

Global site tag (gtag.js) - Google Analytics