Back to project page AndroidYboDb.
The source code is released under:
GNU Lesser General Public License
If you think the Android project AndroidYboDb listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License. * //from w w w . ja v a 2 s. c o m * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * Contributors: * ybonnel - initial API and implementation */ package com.android.demo.notepad1; import java.util.List; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ArrayAdapter; import android.widget.TextView; import com.android.demo.notepad1.modele.Note; public class NoteAdapter extends ArrayAdapter<Note> { private final List<Note> notes; private final LayoutInflater inflater; public NoteAdapter(Context context, List<Note> objects) { super(context, R.layout.notes_row, objects); notes = objects; inflater = LayoutInflater.from(getContext()); } private static class ViewHolder { private TextView title; } @Override public View getView(int position, View convertView, ViewGroup parent) { View convertView1 = convertView; Note note = notes.get(position); NoteAdapter.ViewHolder holder; if (convertView1 == null) { convertView1 = inflater.inflate(R.layout.notes_row, null); holder = new NoteAdapter.ViewHolder(); holder.title = (TextView) convertView1.findViewById(R.id.text1); convertView1.setTag(holder); } else { holder = (NoteAdapter.ViewHolder) convertView1.getTag(); } holder.title.setText(note.title); return convertView1; } }