Android ListView以无序方式显示列表项

时间:2016-03-01 10:36:10

标签: android listview arraylist baseadapter

有时列表视图重复前5个值有时10个值,但代码不显示任何错误或警告。和其他问题是如果我选择一个RadioButton它改变具有相同id(但不同位置)的整个RadioButtons

import android.content.Context;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.TextView;

import org.json.JSONObject;

import java.util.ArrayList;

/**
 * Created by Anu Martin on 3/1/2016.
 */
public class QuestionAdapter extends BaseAdapter{

    ArrayList<JSONObject> arrayList;
    LayoutInflater inflater;
    Context context;
    public static final String KEY_QUESTION_TYPE="type"
            ,KEY_QUESTION="Q"
            ,KEY_QESTION_OPTION_YES="OPTYES"
            ,KEY_QUESTION_OPTION_NO="OPTNO"
            ,KEY_QUESTION_OPTION1="OPT1"
            ,KEY_QUESTION_OPTION2="OPT2"
            ,KEY_QUESTION_OPTION3="OPT3"
            ,KEY_QUESTION_OPTION4="OPT4"
            ,KEY_QUESTION_EXPLANATION="EXPL"
            ,KEY_ARRAY_QUESTION="A";
    public static final int QUESTION_TYPE_YESORNO=15
            ,QUESTION_TYPE_MULTIPLE_CHOICE=20
            ,QUESTION_TYPE_SHORT_ANSWER=25;

    public QuestionAdapter(Context context,ArrayList<JSONObject> arrayList){
        this.arrayList=arrayList;
        this.context=context;
        inflater=LayoutInflater.from(this.context);
    }

    @Override
    public int getCount() {
        return arrayList.size();
    }

    @Override
    public Object getItem(int position) {
        return arrayList.get(position);
    }

    @Override
    public long getItemId(int position) {
        return 0;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        Log.e("getView",position+"");
        try {
            JSONObject jsonObject = this.arrayList.get(position);
            Log.d("getView",jsonObject.toString());
            int questionType=jsonObject.getInt(KEY_QUESTION_TYPE);
                switch (questionType){
                    case QUESTION_TYPE_YESORNO:{
                        ViewHolderYesOrNo mViewHolder;
                        if(convertView==null){
                            convertView=this.inflater.inflate(R.layout.row_question_yesorno,null);
                            mViewHolder=new ViewHolderYesOrNo(convertView);
                            convertView.setTag(mViewHolder);
                        }else{
                            mViewHolder=(ViewHolderYesOrNo)convertView.getTag();
                        }
                        mViewHolder.question.setText(jsonObject.getString(KEY_QUESTION));
                        mViewHolder.type.setText(jsonObject.getInt(KEY_QUESTION_TYPE)+"");

                        if(jsonObject.getString(KEY_QUESTION_EXPLANATION)!=null) {
                            mViewHolder.explanation.setText(jsonObject.getString(KEY_QUESTION_EXPLANATION));
                            mViewHolder.explanation.setVisibility(View.VISIBLE);
                        }
                    }break;
                    case QUESTION_TYPE_MULTIPLE_CHOICE:{
                        final ViewHolderMultipleChoice mViewHolder;
                        if(convertView==null){
                            convertView=this.inflater.inflate(R.layout.row_question_multiple_choice,null);
                            mViewHolder=new ViewHolderMultipleChoice(convertView);
                            convertView.setTag(mViewHolder);
                        }else{
                            mViewHolder=(ViewHolderMultipleChoice)convertView.getTag();
                        }
                        mViewHolder.question.setText(jsonObject.getString(KEY_QUESTION));
                        mViewHolder.type.setText(jsonObject.getInt(KEY_QUESTION_TYPE)+"");
                        mViewHolder.explanation.setText("");

                        mViewHolder.option1.setText(jsonObject.getString(KEY_QUESTION_OPTION1));
                        mViewHolder.option2.setText(jsonObject.getString(KEY_QUESTION_OPTION2));
                        mViewHolder.option3.setText(jsonObject.getString(KEY_QUESTION_OPTION3));
                        mViewHolder.option4.setText(jsonObject.getString(KEY_QUESTION_OPTION4));

                        if(jsonObject.getString(KEY_QUESTION_EXPLANATION)!=null) {
                            mViewHolder.explanation.setText(jsonObject.getString(KEY_QUESTION_EXPLANATION));
                            mViewHolder.explanation.setVisibility(View.VISIBLE);
                        }

                    }break;
                    case QUESTION_TYPE_SHORT_ANSWER:{
                        ViewHolderShortAnswer mViewHolder;
                        if(convertView==null){
                            convertView=this.inflater.inflate(R.layout.row_question_short_answer,null);
                            mViewHolder=new ViewHolderShortAnswer(convertView);
                            convertView.setTag(mViewHolder);
                        }else{
                            mViewHolder=(ViewHolderShortAnswer)convertView.getTag();
                        }
                        mViewHolder.question.setText(jsonObject.getString(KEY_QUESTION));
                        mViewHolder.type.setText(jsonObject.getInt(KEY_QUESTION_TYPE)+"");
                        if(jsonObject.getString(KEY_QUESTION_EXPLANATION)!=null) {
                            mViewHolder.explanation.setText(jsonObject.getString(KEY_QUESTION_EXPLANATION));
                            mViewHolder.explanation.setVisibility(View.VISIBLE);
                        }
                    }break;
                    default:{
                        if(convertView==null){
                            convertView=this.inflater.inflate(R.layout.row_question_not_available,null);
                        }
                    }
                }
            }catch (Exception e){

        }
        return convertView;
    }
    static class ViewHolderYesOrNo{
        public TextView question,type,explanation;
        public RadioGroup radioGroup;
        public RadioButton yes,no;

        public ViewHolderYesOrNo(View view){
            question=(TextView) view.findViewById(R.id.rowQuestionYesNo);
            type=(TextView)view.findViewById(R.id.rowQuestionType);
            explanation=(TextView)view.findViewById(R.id.rowQuestionExplanation);
            radioGroup=(RadioGroup)view.findViewById(R.id.rowOptionRadioGroup);

            yes=(RadioButton)view.findViewById(R.id.rowOptionYes);
            no=(RadioButton)view.findViewById(R.id.rowOptionNo);
        }
    }

    static class ViewHolderMultipleChoice{
        public TextView question,type,explanation;
        public RadioGroup radioGroup;
        public RadioButton option1,option2,option3,option4;

        public ViewHolderMultipleChoice(View view){
            question=(TextView) view.findViewById(R.id.rowQuestionYesNo);
            type=(TextView)view.findViewById(R.id.rowQuestionType);
            explanation=(TextView)view.findViewById(R.id.rowQuestionExplanation);
            radioGroup=(RadioGroup)view.findViewById(R.id.rowOptionRadioGroup);

            option1=(RadioButton)view.findViewById(R.id.rowOptionOne);
            option2=(RadioButton)view.findViewById(R.id.rowOptionTwo);
            option3=(RadioButton)view.findViewById(R.id.rowOptionThree);
            option4=(RadioButton)view.findViewById(R.id.rowOptionFour);
        }
    }

    static class ViewHolderShortAnswer{
        public TextView question,type,explanation;

        public ViewHolderShortAnswer(View view){
            question=(TextView) view.findViewById(R.id.rowQuestionYesNo);
            type=(TextView)view.findViewById(R.id.rowQuestionType);
            explanation=(TextView)view.findViewById(R.id.rowQuestionExplanation);
        }
    }
}

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

这样的地方会导致你所看到的。

if(jsonObject.getString(KEY_QUESTION_EXPLANATION)!=null) {
    mViewHolder.explanation.setText(jsonObject.getString(KEY_QUESTION_EXPLANATION));
    mViewHolder.explanation.setVisibility(View.VISIBLE);
}

简而言之,你忘了别阻止。

每当您从查看者那里获得视图时,它仍然具有之前设置的所有值。仅使用if部分而不使用else部分时,只改变一些值,而其他值保持不变。

在这种情况下,当你的jsonObject没有KEY_QUESTION_EXPLANATION时,它会显示最后一项的解释,因此你需要添加

else {
    mViewHolder.explanation.serVisibily(View.Invisible);//or Gone
}

编辑:

粗体部分是导致您的问题的原因。流程是这样的:

  1. 您的适配器获取视图。起初,它是空的。
  2. 您的适配器检查空视图,如果它为null,则会创建一个新视图并设置一半值(因为另一半是在xml中预设的)。
  3. 当您的视图不可见(屏幕外),并且需要新视图时,您的适配器将获取视图,该视图不是空的。
  4. 您的适配器设置了一些值,未设置值保留在上一个视图中。
  5. 您可以使用我之前建议的else声明轻松解决此问题。