然后你点击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>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)