*更新 * こんにちは、私は自分で問題を解決しました 。私の Entryadapter クラスから、それはうまくいきます。
リストに3つのテキストとセパレータ/セクションを含む1つのイメージビューを含むリストビューを表示したい。だから私はこのチュートリアルhttp://bartinger.at/listview-with-sectionsseparators/に従いますか?
画像(ビットマップ)をロードする問題に直面するよりも、ファイルとビットマップファクトリーを使用して、AsyncTaskを使用してリストビューにビットマップを表示します。
しかし、問題は、上下にスクロールするたびに読み込まれることです.一度リストを表示したいので、リストにビューホルダーを実装しようとしていますが、AndroidとJavaに慣れていないので、これを実装する方法がわかりませんコード。
誰でも私を助けることができますか?すべてのコード ファイルを添付しているので、このコードは他の学生や私のような新入生に役立ちます。
ここに私の Entryadaptor.java があります
public class EntryAdapter extends ArrayAdapter<Item> {
private Context context;
private ArrayList<Item> items;
private LayoutInflater vi;
Uri myurl;
ImageView image;
public EntryAdapter(Context context,ArrayList<Item> items) {
super(context,0, items);
this.context = context;
this.items = items;
vi = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
final Item i = items.get(position);
if (i != null) {
if(i.isSection()){
SectionItem si = (SectionItem)i;
v = vi.inflate(R.layout.list_item_section, null);
v.setOnClickListener(null);
v.setOnLongClickListener(null);
v.setLongClickable(false);
final TextView sectionView = (TextView) v.findViewById(R.id.list_item_section_text);
sectionView.setText(si.getTitle());
}else
{
EntryItem ei = (EntryItem)i;
v = vi.inflate(R.layout.list_item_entry, null);
final TextView title = (TextView)v.findViewById(R.id.list_item_entry_title);
final TextView subtitle = (TextView)v.findViewById(R.id.list_item_entry_summary);
image = (ImageView)v.findViewById(R.id.showlist_item_entry_drawable);
if (title != null)
title.setText(ei.title);
if(subtitle != null)
subtitle.setText(ei.subtitle);
if(image !=null)
{
try {
URL onLineURL = new URL(ei.img_url);
new MyNetworkTask(image).execute(onLineURL);
} catch (MalformedURLException e) {
e.printStackTrace();
}}}}
return v;
}
private class MyNetworkTask extends AsyncTask<URL, Void, Bitmap>{
ImageView tIV;
public MyNetworkTask(ImageView iv){
tIV = iv;
}
@Override
protected Bitmap doInBackground(URL... urls) {
Bitmap networkBitmap = null;
URL networkUrl = urls[0]; //Load the first element
try {
networkBitmap = BitmapFactory.decodeStream(
networkUrl.openConnection().getInputStream());
} catch (IOException e) {
e.printStackTrace();
}
return networkBitmap;
}
@Override
protected void onPostExecute(Bitmap result) {
tIV.setImageBitmap(result);
}
}
}
ここにフラグメントコードがあります
public class ShowsFragment extends SherlockListFragment { ArrayList<Item> items = new ArrayList<Item>();
@Override
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
items.add(new SectionItem("Today"));
items.add(new EntryItem("Item 1", "This is item 1.2","http://pierre.chachatelier.fr/programmation/images/mozodojo-original-image.jpg"));
items.add(new EntryItem("Item 2", "This is item 1.3","http://upload.wikimedia.org/wikipedia/commons/8/85/Image-New_Delhi_Lotus.jpg"));
items.add(new SectionItem("This Week"));
items.add(new EntryItem("Item 4", "This is item 2.1","https://twimg0-a.akamaihd.net/profile_images/1080041262/VMIX_logo_zoom_bkbg1_normal.png")); EntryAdapter adapter = new EntryAdapter(getActivity(), items);
setListAdapter(adapter);
}
public void onListItemClick(ListView l, View v, int position, long id) {
if(!items.get(position).isSection()){
EntryItem item = (EntryItem)items.get(position);
Toast.makeText(getActivity(), "You clicked " + item.title , Toast.LENGTH_SHORT).show();
}
super.onListItemClick(l, v, position, id);
}
}
セクション項目コード
public class SectionItem implements Item{
private final String title;
public SectionItem(String title) {
this.title = title;
}
public String getTitle(){
return title;
}
public boolean isSection() {
return true;
}
}
エントリーアイテムクラスコード
public class EntryItem implements Item{
public final String title;
public final String subtitle;
public final String img_url;
public EntryItem(String title, String subtitle,String Image_url) {
this.title = title;
this.subtitle = subtitle;
this.img_url = Image_url;
}
public boolean isSection() {
return false;
}
}