Отображается ListView, но приложение падает при прокрутке и нажатии
У меня есть ListView
с пользовательским макетом с именем custom_listview.xml
:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="20dp"
android:padding="5dp"
android:id="@+id/file_name"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="18dp"
android:id="@+id/file_path"/>
</LinearLayout>
А это мой CustomAdapter
учебный класс:
public class CustomAdapter extends BaseAdapter {
ArrayList<File> result;
Context context;
private static LayoutInflater inflater=null;
public CustomAdapter(Activity parentActivity, ArrayList<File> fileList) {
// TODO Auto-generated constructor stub
result=fileList;
context=parentActivity;
inflater = ( LayoutInflater )context.
getSystemService(Context.LAYOUT_INFLATER_SERVICE);
}
@Override
public int getCount() {
// TODO Auto-generated method stub
return result.size();
}
@Override
public Object getItem(int position) {
// TODO Auto-generated method stub
return position;
}
@Override
public long getItemId(int position) {
// TODO Auto-generated method stub
return position;
}
public class Holder
{
TextView file_name;
TextView file_path;
}
@Override
public View getView(final int position, View convertView, ViewGroup parent) {
// TODO Auto-generated method stub
if (convertView == null)
{
LayoutInflater mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = mInflater.inflate(R.layout.custom_listview, null);
}
Holder holder=new Holder();
holder.file_name=(TextView) convertView.findViewById(R.id.file_name);
holder.file_path=(TextView) convertView.findViewById(R.id.file_path);
//holder.img=(ImageView) rowView.findViewById(R.id.imageView1);
holder.file_name.setText(result.get(position).getName());
holder.file_path.setText(result.get(position).getPath());
return convertView;
}
}
А вот мой onClickListener
для ListView
:
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
int color = Color.TRANSPARENT;
Drawable background = parent.getChildAt(position).getBackground();
if (background instanceof ColorDrawable)
color = ((ColorDrawable) background).getColor();
if(color == Color.CYAN)
{ parent.getChildAt(position).setBackgroundColor(Color.TRANSPARENT);}
else {
parent.getChildAt(position).setBackgroundColor(Color.CYAN);
TextView t;
t = (TextView) view.findViewById(R.id.file_path);
files_selected.addElement(t.getText().toString());
}
}
}
Приложение работает нормально, когда я нажимаю на любой элемент в верхней части списка. Но как только я прокручиваю вниз и нажимаю ЛЮБОЙ элемент, приложение вылетает. Пожалуйста помоги. Спасибо!
2 ответа
Не должно ли это быть;
if (convertView == null)
{
LayoutInflater mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = mInflater.inflate(R.layout.custom_listview, null);
Holder holder=new Holder();
holder.file_name=(TextView) convertView.findViewById(R.id.file_name);
holder.file_path=(TextView) convertView.findViewById(R.id.file_path);
//holder.img=(ImageView) rowView.findViewById(R.id.imageView1);
holder.file_name.setText(result.get(position).getName());
holder.file_path.setText(result.get(position).getPath());
}else{
viewHolder = (ViewHolder) view.getTag();
}
view.setTag(viewHolder);
Ты забыл еще. Попробуй это. Если вы не реализуете другую часть, то при прокрутке ваше приложение будет свернуто.
Holder holder;
if (convertView == null)
{
holder=new Holder();
LayoutInflater mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = mInflater.inflate(R.layout.custom_listview, null);
holder.file_name=(TextView) convertView.findViewById(R.id.file_name);
holder.file_path=(TextView) convertView.findViewById(R.id.file_path);
convertView.setTag(holder);
}else{
holder = (Holder) convertView.getTag();
}
РЕДАКТИРОВАТЬ: Если вы установлены, если условие if (convertView == null)
и забыл установить еще часть, то время recycling
(Прокрутка) он будет пытаться воссоздать, и изменения текста между строками, сбой и т. Д. Все происходит. Поэтому всякий раз, когда вы добавляете условие if внутри getView, вы должны добавлять if так же, как и другие.