forked from thest1/LazyList
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Use activity context not application context"
This reverts commit e5ef5b3.
- Loading branch information
Showing
1 changed file
with
48 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,49 @@ | ||
package com.fedorvlasov.lazylist; | ||
|
||
import android.app.Activity; | ||
import android.content.Context; | ||
import android.view.LayoutInflater; | ||
import android.view.View; | ||
import android.view.ViewGroup; | ||
import android.widget.BaseAdapter; | ||
import android.widget.ImageView; | ||
import android.widget.TextView; | ||
|
||
public class LazyAdapter extends BaseAdapter { | ||
|
||
private Activity activity; | ||
private String[] data; | ||
private static LayoutInflater inflater=null; | ||
public ImageLoader imageLoader; | ||
|
||
public LazyAdapter(Activity a, String[] d) { | ||
activity = a; | ||
data=d; | ||
inflater = (LayoutInflater)activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE); | ||
imageLoader=new ImageLoader(activity); | ||
} | ||
|
||
public int getCount() { | ||
return data.length; | ||
} | ||
|
||
public Object getItem(int position) { | ||
return position; | ||
} | ||
|
||
public long getItemId(int position) { | ||
return position; | ||
} | ||
|
||
public View getView(int position, View convertView, ViewGroup parent) { | ||
View vi=convertView; | ||
if(convertView==null) | ||
vi = inflater.inflate(R.layout.item, null); | ||
|
||
TextView text=(TextView)vi.findViewById(R.id.text);; | ||
ImageView image=(ImageView)vi.findViewById(R.id.image); | ||
text.setText("item "+position); | ||
imageLoader.DisplayImage(data[position], image); | ||
return vi; | ||
} | ||
package com.fedorvlasov.lazylist; | ||
|
||
import android.app.Activity; | ||
import android.content.Context; | ||
import android.view.LayoutInflater; | ||
import android.view.View; | ||
import android.view.ViewGroup; | ||
import android.widget.BaseAdapter; | ||
import android.widget.ImageView; | ||
import android.widget.TextView; | ||
|
||
public class LazyAdapter extends BaseAdapter { | ||
|
||
private Activity activity; | ||
private String[] data; | ||
private static LayoutInflater inflater=null; | ||
public ImageLoader imageLoader; | ||
|
||
public LazyAdapter(Activity a, String[] d) { | ||
activity = a; | ||
data=d; | ||
inflater = (LayoutInflater)activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE); | ||
imageLoader=new ImageLoader(activity.getApplicationContext()); | ||
} | ||
|
||
public int getCount() { | ||
return data.length; | ||
} | ||
|
||
public Object getItem(int position) { | ||
return position; | ||
} | ||
|
||
public long getItemId(int position) { | ||
return position; | ||
} | ||
|
||
public View getView(int position, View convertView, ViewGroup parent) { | ||
View vi=convertView; | ||
if(convertView==null) | ||
vi = inflater.inflate(R.layout.item, null); | ||
|
||
TextView text=(TextView)vi.findViewById(R.id.text);; | ||
ImageView image=(ImageView)vi.findViewById(R.id.image); | ||
text.setText("item "+position); | ||
imageLoader.DisplayImage(data[position], image); | ||
return vi; | ||
} | ||
} |