我在活动中有自定义列表视图。 listview行项目具有自定义布局,包含两个文本资源和一个按钮。
列表正确填充,我可以点击按钮而不激活实际的项目行,使用'" android:descendantFocusability =" blocksDescendants"'在项目布局中。
但是当我点击不同的行时,我会发现奇怪的高光。
该列表有两个条目。点击项目#1的主行可以突出显示整行,很好。点击按钮突出显示按钮,再次没问题。
但是点击第2项的主行,该行中的按钮会突出显示,而不是行项本身。点击按钮也会正常亮起按钮。
那么为什么在点击时不会突出显示#2行?
活动(有一个父RelativeView):
<ListView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/screenListView"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" />
ListView项目:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:descendantFocusability="blocksDescendants" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Text"
android:id="@+id/name"
android:layout_margin="5dp"
android:layout_alignParentLeft="true"
android:textSize="16sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Text"
android:id="@+id/playlist"
android:textSize="12sp"
android:layout_margin="5dp"
android:layout_below="@+id/name"
android:layout_alignParentLeft="true" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/playButton"
android:src="@drawable/ic_action_play"
android:layout_alignParentRight="true" />
</RelativeLayout>
适配器:
public class ScreenListViewAdapter extends ArrayAdapter<ScreenModel> {
private final Context context;
private final ArrayList<ScreenModel> optionsArrayList;
public ScreenListViewAdapter(Context context, ArrayList<ScreenModel> optionsArrayList) {
super(context, R.layout.playlist_list_item, optionsArrayList);
this.context = context;
this.optionsArrayList = optionsArrayList;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View rowView = inflater.inflate(R.layout.screen_list_item, parent, false);
if (position % 2 == 1) {
rowView.setBackgroundColor(context.getResources().getColor(R.color.list_row_colour_1));
}
rowView.setTag(optionsArrayList.get(position).getPlaylistId());
TextView name = (TextView) rowView.findViewById(R.id.name);
TextView playlistName = (TextView) rowView.findViewById(R.id.playlist);
ImageButton playBtn = (ImageButton) rowView.findViewById(R.id.playButton);
playBtn.setTag(optionsArrayList.get(position).getPlaylistId());
name.setText(optionsArrayList.get(position).getName());
playlistName.setText(optionsArrayList.get(position).getPlaylistName());
// handle "play" button
playBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
// do stuff
}
});
return rowView;
}
答案 0 :(得分:-1)
我怎样才能有不同的颜色
if (position % 2 == 1) {
rowView.setBackgroundColor(context.getResources().getColor(R.color.list_row_colour_1));
} else {
rowView.setBackgroundColor(context.getResources().getColor(R.color.list_row_colour_2)); //Set color 2
}
在未添加的else块中,已知在适配器中发生了神秘事件。
修改强>
阅读评论后,似乎this answer可能会提供帮助。
它基本上要求设置choiceMode = "singleChoice"
并应用listSelector
。另请注意
如果从getView方法设置背景,而不是使用静态颜色,请将状态列表drawable应用于行背景,并将duplicateParentState设置为true。这样它将根据项目的当前状态更改其显示:正常,聚焦,按下等。