qtlistview设置无法选中

qtlistview设置无法选中,第1张

在布局文件中设置listview android:listselector="@android:color/translate"让他在被点中的时候背景透明,这样,看起来的效果listview就无法选中

然后你点击button,这时候listview的背景就不会成为难看的黄色了,你只需要处理button的点击或者长按事件就好了

============解决方案2============

在Adapter里边 加上

@Override

public boolean isEnabled(int position) {

return false

}

这样item就不会被选中了。

然后给你想要有点击效果的控件加监听就行了。

delphixelistview设置换行修改Label的两个属性。autosize改为false,wordwrap改为true,对Caption设置内容时,当其超长的时候,会自动换行。

1.在ListView的布局文件中把属性android:layout_height设置成"wrap_content"

<ListView

android:cacheColorHint="#00000000"

android:textColor="#ff435346"

android:textSize = "20sp"

android:id="@id/android:list"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:layout="@+id/textViewCurrentBase"

android:listSelector="#00000000"

android:drawSelectorOnTop="false"/>

2.设置子项xml文件(比如这里把一个item.xml设置成ListView的一行)的各个控件android:layout_height的值。这里80sp+40sp就是你需要的一行的高度了。

item.xml如下:

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

android:id="@+id/TextView01"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

>

<TextView android:focusable="false"

android:textColor="@drawable/white"

android:id="@+id/ItemTitle"

android:layout_height="80sp"

android:layout_width="fill_parent" />

<TextView android:focusable="false"

android:id="@+id/ItemText"

android:textColor="@drawable/blue"

android:layout_height="40sp"

android:layout_width="wrap_content"

android:layout_below="@+id/ItemTitle" />

<Button

android:id="@+id/ItemButton"

android:layout_height="wrap_content"

android:layout_width="wrap_content"

android:layout_alignParentRight="true" />

</RelativeLayout>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/6559158.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-24
下一篇 2023-03-24

发表评论

登录后才能评论

评论列表(0条)

保存