Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package Le3ynik.ui;
- import java.util.ArrayList;
- import leaynik.co.com.R;
- import Le3ynik.defs.DisasesItem;
- import android.content.Context;
- import android.graphics.Typeface;
- import android.view.LayoutInflater;
- import android.view.View;
- import android.view.ViewGroup;
- import android.widget.BaseAdapter;
- import android.widget.ImageView;
- import android.widget.ProgressBar;
- import android.widget.TextView;
- import com.example.imageloader.ImageLoader;
- public class Disases_listView extends BaseAdapter {
- Context context;
- // layoutdata [] layouts;
- ImageLoader loader;
- private ArrayList<DisasesItem> Disases = new ArrayList<DisasesItem>();
- public Disases_listView(Context context, ArrayList<DisasesItem> Questions) {
- this.context = context;
- loader = new ImageLoader(context);
- this.Disases = Questions;
- }
- @Override
- public int getCount() {
- // TODO Auto-generated method stub
- try {
- return Disases.size();
- } catch (Exception e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- return 0;
- }
- @Override
- public Object getItem(int arg0) {
- // TODO Auto-generated method stub
- return Disases.get(arg0);
- }
- @Override
- public long getItemId(int arg0) {
- // TODO Auto-generated method stub
- return 0;
- }
- @Override
- public View getView(final int pos, View view, ViewGroup arg2) {
- // Handler handel = null;
- LayoutInflater inflater = (LayoutInflater) context
- .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
- Typeface tf = Typeface.createFromAsset(context.getAssets(), "fonts/GE_SS_Two_Bold.otf");
- view = inflater.inflate(R.layout.disases_row, null);
- ImageView disases_img = (ImageView) view.findViewById(R.id.disases_img);
- TextView name = (TextView) view.findViewById(R.id.disases_name);
- name.setTypeface(tf);
- ProgressBar post_img_pro = (ProgressBar) view
- .findViewById(R.id.disases_progressBar1);
- loader.DisplayImage(Disases.get(pos).disease_photo, disases_img,
- post_img_pro, 1);
- name.setText(Disases.get(pos).disease_name);
- // Animation animation = null;
- // animation = AnimationUtils.loadAnimation(context,
- // R.anim.slid_up_to_btom);
- // animation.setDuration(500);
- // view.setAnimation(animation);
- // animation = null;
- return view;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement