gpt4 book ai didi

android - 带有图像选择和取消选择的 Horizo​​ntalListview

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:17:10 25 4
gpt4 key购买 nike

我在 listiview 中的图像 select/unselect 中遇到问题。就我而言,

ByDefault->image color(Yellow)
First click->image color(Orange)
Second click->image color(Yellow)

如果用户点击过度然后完美,但是当用户第一次点击第一张图片和第二次点击第二张图片时,两个图像颜色都是橙色(这是问题)。

在我的例子中,一次只有一种图像颜色是橙色(表示选中)。

最佳答案

  1. 如果您只支持 HoneyComb 及以上版本,那会很容易。创建一个 StateListDrawable 并将其设置为 ListView 项的背景。

选择器.xml

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_activated="true" android:drawable="@drawable/item_focus" />
<item android:drawable="@android:color/transparent" />
</selector>

ListView 项的布局

<ImageView
android:id="@+id/image"
android:layout_width="100dp"
android:layout_height="100dp"
android:padding="5dp" />

最后,将您的 ListView 选择模式设置为SINGLE

list.setChoiceMode(ListView.CHOICE_MODE_SINGLE);

2。如果你设法支持 pre HoneyComb,你将不得不编写自己的布局实现 checkable。您这样做是为了使用检查状态 进行锻炼。让我们以 LinearLayout 为例(你可以对其他人做同样的事情)。

 package com.example.listviewactivestate;

import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.widget.Checkable;
import android.widget.LinearLayout;

public class CustomLinearLayout extends LinearLayout implements Checkable {


private static final int[] CHECKED_STATE_SET = { android.R.attr.state_checked };

private boolean checked = false;

public CustomLinearLayout (Context context, AttributeSet attrs) {
super(context, attrs);
}

public CustomLinearLayout (Context context) {
super(context);
}

@Override
public boolean isChecked() {
return checked;
}

@Override
public void setChecked(boolean checked) {
this.checked = checked;

refreshDrawableState();

// Propagate to childs
final int count = getChildCount();
for (int i = 0; i < count; i++) {
final View child = getChildAt(i);
if (child instanceof Checkable) {
((Checkable) child).setChecked(checked);
}
}
}

@Override
protected int[] onCreateDrawableState(int extraSpace) {
final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
if (isChecked()) {
mergeDrawableStates(drawableState, CHECKED_STATE_SET);
}
return drawableState;
}

@Override
public void toggle() {
this.checked = !this.checked;
}
}

在xml中使用这个自定义 View

 <?xml version="1.0" encoding="utf-8"?>
<com.example.listviewactivestate.CustomLinearLayout

xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/selector"
>

<ImageView
android:id="@+id/image"
android:layout_width="100dp"
android:layout_height="100dp"
android:padding="5dp" />

</com.example.listviewactivestate.CustomLinearLayout >

state_activated 更改为 state_checked

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true" android:drawable="@drawable/item_focus" />
<item android:drawable="@android:color/transparent" />
</selector>

同时将 ListView 选择模式设置为SINGLE。如果不起作用,请像这样添加 onItemClickEvent

list.setOnItemClickListener(new OnItemClickListener() {

@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
// TODO Auto-generated method stub
list.setItemChecked(position, true);//make sure click item is set to checked.

}
});

关于android - 带有图像选择和取消选择的 Horizo​​ntalListview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13912344/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com