我是Android开发的新手。我使用listview
和textbox
创建了checkbox
。
当我检查checkbox
并向下滚动以检查列表视图中的其他项目时,不选中较旧的项目。
如何在listview
中避免此问题?请引导我使用我的代码。
以下是代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/TextView01"
android:layout_height="wrap_content"
android:text="List of items"
android:textStyle="normal|bold"
android:gravity="center_vertical|center_horizontal"
android:layout_width="fill_parent"/>
<ListView
android:id="@+id/ListView01"
android:layout_height="250px"
android:layout_width="fill_parent"/>
<Button
android:text="Save"
android:id="@+id/btnSave"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
这是我用来创建动态列表行的XML页面:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:gravity="left|center"
android:layout_width="wrap_content"
android:paddingBottom="5px"
android:paddingTop="5px"
android:paddingLeft="5px">
<TextView
android:id="@+id/TextView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:textColor="#FFFF00"
android:text="hi"/>
<TextView
android:text="hello"
android:id="@+id/TextView02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10px"
android:textColor="#0099CC"/>
<EditText
android:id="@+id/txtbox"
android:layout_width="120px"
android:layout_height="wrap_content"
android:textSize="12sp"
android:layout_x="211px"
android:layout_y="13px"/>
<CheckBox
android:id="@+id/chkbox1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
这是我的活动课。
public class CustomListViewActivity extends Activity {
ListView lstView;
static Context mContext;
Button btnSave;
private static class EfficientAdapter extends BaseAdapter {
private LayoutInflater mInflater;
public EfficientAdapter(Context context) {
mInflater = LayoutInflater.from(context);
}
public int getCount() {
return country.length;
}
public Object getItem(int position) {
return position;
}
public long getItemId(int position) {
return position;
}
public View getView(int position, View convertView, ViewGroup parent) {
final ViewHolder holder;
if (convertView == null) {
convertView = mInflater.inflate(R.layout.listview, parent,
false);
holder = new ViewHolder();
holder.text = (TextView) convertView
.findViewById(R.id.TextView01);
holder.text2 = (TextView) convertView
.findViewById(R.id.TextView02);
holder.txt = (EditText) convertView.findViewById(R.id.txtbox);
holder.cbox = (CheckBox) convertView.findViewById(R.id.chkbox1);
convertView.setTag(holder);
}
else {
holder = (ViewHolder) convertView.getTag();
}
holder.text.setText(curr[position]);
holder.text2.setText(country[position]);
holder.txt.setText("");
holder.cbox.setChecked(false);
return convertView;
}
public class ViewHolder {
TextView text;
TextView text2;
EditText txt;
CheckBox cbox;
}
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
lstView = (ListView) findViewById(R.id.ListView01);
lstView.setAdapter(new EfficientAdapter(this));
btnSave = (Button)findViewById(R.id.btnSave);
mContext = this;
btnSave.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// I want to print the text which is in the listview one by one.
// Later I will insert it in the database.
//
// Toast.makeText(getBaseContext(), "EditText Value, checkbox value and other values", Toast.LENGTH_SHORT).show();
for (int i = 0; i < lstView.getCount(); i++) {
View listOrderView;
listOrderView = lstView.getChildAt(i);
try{
EditText txtAmt = (EditText)listOrderView.findViewById(R.id.txtbox);
CheckBox cbValue = (CheckBox)listOrderView.findViewById(R.id.chkbox1);
if(cbValue.isChecked()== true){
String amt = txtAmt.getText().toString();
Toast.makeText(getBaseContext(), "Amount is :"+amt, Toast.LENGTH_SHORT).show();
}
}
catch (Exception e) {
// TODO: handle exception
}
}
}
});
}
private static final String[] country = { "item1", "item2", "item3",
"item4", "item5", "item6","item7", "item8", "item9",
"item10", "item11", "item12" };
private static final String[] curr = { "1", "2", "3", "4", "5", "6","7", "8", "9", "10", "11", "12" };
}
请帮我解决这个问题。
我在很多地方都提到了这个问题。但我无法得到正确答案来解决这个问题。
请向我提供代码,以避免在向上和向下滚动时取消选中复选框。
答案 0 :(得分:32)
在自定义列表视图适配器中,在 调用 setOnCheckedChangeListener 之后调用 setChecked 。
这样您就可以从循环视图中断开与旧侦听器的链接。
答案 1 :(得分:5)
您可以使用以下适配器代码在ListView中完美地运行复选框。
详细演示如下: Listview With Checkbox Android
有关详细信息,请参阅详细的演示链接。它还显示了如何将检查信息发送到下一个活动。
RewriteCond %{QUERY_STRING} (^|&)QUERY=([0-9]+) [NC]
RewriteRule ^subdir/([\w-]+)/?$ /${lc:$1}.html [L,NC,R=301]
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.CheckBox;
import android.widget.TextView;
import android.widget.Toast;
import java.util.ArrayList;
public class CustomAdapter extends BaseAdapter {
private Context context;
public static ArrayList<Model> modelArrayList;
public CustomAdapter(Context context, ArrayList<Model> modelArrayList) {
this.context = context;
this.modelArrayList = modelArrayList;
}
@Override
public int getViewTypeCount() {
return getCount();
}
@Override
public int getItemViewType(int position) {
return position;
}
@Override
public int getCount() {
return modelArrayList.size();
}
@Override
public Object getItem(int position) {
return modelArrayList.get(position);
}
@Override
public long getItemId(int position) {
return 0;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
final ViewHolder holder;
if (convertView == null) {
holder = new ViewHolder(); LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = inflater.inflate(R.layout.lv_item, null, true);
holder.checkBox = (CheckBox) convertView.findViewById(R.id.cb);
holder.tvAnimal = (TextView) convertView.findViewById(R.id.animal);
convertView.setTag(holder);
}
else {
// The getTag returns the viewHolder object set as a tag to the view
holder = (ViewHolder)convertView.getTag();
}
holder.checkBox.setText("Checkbox " + position);
holder.tvAnimal.setText(modelArrayList.get(position).getAnimal());
holder.checkBox.setChecked(modelArrayList.get(position).getSelected());
holder.checkBox.setTag(R.integer.btnplusview, convertView);
holder.checkBox.setTag( position);
holder.checkBox.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
View tempview = (View) holder.checkBox.getTag(R.integer.btnplusview);
TextView tv = (TextView) tempview.findViewById(R.id.animal);
Integer pos = (Integer) holder.checkBox.getTag();
Toast.makeText(context, "Checkbox " + pos + " clicked!", Toast.LENGTH_SHORT).show();
if (modelArrayList.get(pos).getSelected()){
modelArrayList.get(pos).setSelected(false);
}
else {
modelArrayList.get(pos).setSelected(true);
}
}
});
return convertView;
}
private class ViewHolder {
protected CheckBox checkBox;
private TextView tvAnimal;
}
}
是
Model
答案 2 :(得分:3)
在getView()
中,您有以下内容
holder.cbox.setChecked(false);
每次调用getView()
时都会取消选中CheckBox(例如,滚动列表时)
答案 3 :(得分:1)
块引用
**在Side getView()方法中,只需像这样调用&gt;&gt;
check.setOnCheckedChangeListener(new OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton arg0, boolean arg1)
{
if(check.isChecked())
{
//checked
chkArray[position]=true;
}
else
{ //uncheck
chkArray[position]=false;
}
}
});
//check condition for checkboxes
if(chkArray.length>0)
{
for (int i = 0; i < chkArray.length; i++)
{
if(chkArray[position]!=null && chkArray[position])
{
check.setChecked(true);
}
}
}
答案 4 :(得分:0)
考虑:
holder.cbox.setChecked(false);
删除此行。每次滚动列表视图时,都会调用getView()方法。
答案 5 :(得分:0)
最后,几个小时后我到达了解决方案
在getView方法内部,如下所示:
if(marray!=null) { //if myarray class object has data
holder.name.setText(marray.getName());
.
.
holder.checkbox.setChecked(marray.isChecked());//get the checkbox state
}
将该值提供给holder.checkbox.setOnClickListener方法中的布尔变量,如下所示:
holder.checkbox.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (allReport.UserSelection.contains(
Integer.parseInt(marrays.get(position)
.getIdd()))) // check if id selected before
{
marray.setChecked(false);// marray is the object from myArray class
allReport.UserSelection.remove(new Integer(Integer.parseInt(marrays.get(position).getIdd())));//remove id
}else{
allReport.UserSelection.add(Integer.parseInt
(marrays.get(position).getIdd()));//save the selection
marray.setChecked(true);//save the boolean to true}
这为我解决了问题 我希望能对您有所帮助
答案 6 :(得分:0)
它的解决方案是在适配器视口中添加itemView.OnClicklistener的更改。一定会解决您的职位问题
答案 7 :(得分:-1)
我以前也遇到过这个问题。 Android这样做是为了节省空间;只加载你当前看到的项目,这就是我发现的。
如果您位于列表的底部,则ID 1可能位于第5位。我在网上搜索并发现此信息。
但是this会帮助你:D
答案 8 :(得分:-1)
当我们在listview中滚动项目时,它会从适配器恢复值。这就是未选中复选框的原因。但是如果我们用最新值更新适配器,它将保持检查状态。为此,您需要使用setOnClickListener()。
您需要做的就是在复选框点击时更新您的适配器。您可以参考此link以获得一个想法