gpt4 book ai didi

android - setChecked 不起作用

转载 作者:行者123 更新时间:2023-11-29 17:33:57 27 4
gpt4 key购买 nike

我正在尝试实现带有切换按钮的 ListView 。一切顺利,问题出在切换按钮的方法 setChecked 上。在向下进入 ListView 时,该按钮会自动设置为自行关闭。我正在使用自定义适配器,这里是 getView 方法:

public View getView(final int position, View convertView, ViewGroup parent) {

final Holder holder = new Holder();

View rowView = inflater.inflate(R.layout.list_view_layout,null);

holder.tv = (TextView) rowView.findViewById(R.id.tv_item);
holder.tb = (ToggleButton) rowView.findViewById(R.id.tgl_status);

holder.tv.setText(Name.get(position));


holder.tb.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (isChecked) {
// The toggle is enabled
holder.tb.setChecked(isChecked);
Toast.makeText(activity, Name.get(position) + "ON", Toast.LENGTH_LONG).show();
} else {
// The toggle is disabled
Toast.makeText(activity, "OFF", Toast.LENGTH_LONG).show();
holder.tb.setChecked(isChecked);
}
}
});

rowView.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Toast.makeText(activity, "You Clicked "+Name.get(position), Toast.LENGTH_LONG).show();
}
});
return rowView;
}

问题在于:

holder.tb.setChecked(isChecked);

它总是错误的。

我的 list_view_layout.xml 文件是:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:orientation="horizontal"
android:layout_height="wrap_content">

<TextView
android:id="@+id/tv_item"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>

<ToggleButton
android:id="@+id/tgl_status"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>

我正在使用使用此自定义适配器的 fragment 。

最佳答案

我看不出有什么问题。

您正在选中/取消选中此 ToggleButton IN CheckedChangeListener。即:当您选中此 ToggleButton 时,您的 onCheckedChange 将再次选中它。您正在重复不需要的操作。

如果您实际上是在根据 WeathersArrayList 中的对象(比方说 Weather)在您的 Adapter,那么你应该去:

if (weatherList.get(position).isChecked) { 
holder.tb.setChecked(true);
} else {
holder.tb.setChecked(false);
}

关于android - setChecked 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31495196/

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