2013-04-12 7 views
6

screen shotएंड्रॉयड: सूचीदृश्य

उपरोक्त छवि में में किसी विशेष आइटम के लिए छवि बदलें, वहाँ एक सूची दृश्य जो आइटम है कि उपयोगकर्ता डाउनलोड कर सकते हैं की सूची होती है है। download button यह वह छवि है जो उपयोगकर्ता को बताती है कि वह फ़ाइल डाउनलोड कर सकता है। डाउनलोड पूरा होने पर, छवि download completed button में बदल जाएगी। मेरी समस्या यह है कि जब मैं एक फ़ाइल डाउनलोड करता हूं, तो स्थिति छवि (जो कि डाउनलोड को पूरा कर लेती है) एक और पंक्ति के लिए बदल जाती है, इसके बजाय, इसे उस पंक्ति के लिए बदलना चाहिए जिसे मैंने चुना था। वर्तमान में, अगर मैं सूची में पहली फ़ाइल डाउनलोड करता हूं, तो सूची में 4 वें या 5 वें आइटम के लिए छवि बदल जाती है। साथ ही, जब मैं सूची से किसी अन्य फ़ाइल को डाउनलोड करने का प्रयास करता हूं। यह आखिरी डाउनलोड की गई फाइल खोलता है (यह ऐप की कार्यक्षमता है कि अगर फ़ाइल पहले से डाउनलोड हो चुकी है, तो इसे पीडीएफ रीडर में खोलें), यानी, अगर मैं सूची में पहली फाइल डाउनलोड करता हूं और फिर दूसरी वस्तु के लिए जाता हूं, तो दूसरा डाउनलोड करने के बजाय फ़ाइल, यह आखिरी डाउनलोड की गई फाइल खुलती है। अधिक, यदि मैं सूचीदृश्य स्क्रॉल करता हूं, तो सूची में अन्य वस्तुओं के लिए डाउनलोड की स्थिति भी बदल जाती है।

public class DownloadListAdapter extends BaseAdapter { 
Context ctx; 
public ArrayList<DownloadListDao> mDownloadList; 
String readMoreLink; 
public static final String TAG = "DownloadListAdapter"; 
ProgressDialog mProgressDialog; 
private boolean isSDCardPresent; 
File tieDir; 
int downloadState[]; 

public DownloadListAdapter(Context ctx, 
     ArrayList<DownloadListDao> mDownloadList) { 
    this.ctx = ctx; 
    this.mDownloadList = mDownloadList; 
    downloadState = new int [mDownloadList.size()]; 
    for(int i = 0; i < mDownloadList.size(); i++) { 
     downloadState[i] = 0; 
    } 
    tieDir = new File(Environment.getExternalStorageDirectory().toString() 
      + "/tie"); 
}// Constructor 

public int getCount() { 
    return this.mDownloadList.size(); 
}// getCount 

public Object getItem(int position) { 
    return this.mDownloadList.get(position); 
}// getItem 

public long getItemId(int position) { 
    return 0; 
}// getItemId 

static class ViewHolder { 
    TextView txtTitle, txtTheme, txtDate; 
    ImageView imgDownload; 
}// ViewHolder 

ViewHolder holder; 

public View getView(final int position, View convertView, ViewGroup parent) { 
    final String url = mDownloadList.get(position).getUrl(); 
    if (convertView == null) { 
     convertView = LayoutInflater.from(parent.getContext()).inflate(
       R.layout.downlist_adapter, null); 
     holder = new ViewHolder(); 

     holder.txtTitle = (TextView) convertView 
       .findViewById(R.id.txtTitle); 
     holder.txtTheme = (TextView) convertView 
       .findViewById(R.id.txtTheme); 
     holder.txtDate = (TextView) convertView.findViewById(R.id.txtDate); 
     holder.imgDownload = (ImageView) convertView 
       .findViewById(R.id.imgDload); 

     holder.imgDownload.setOnClickListener(new View.OnClickListener() { 
      @Override 
      public void onClick(View v) { 
       File mediaFile = null; 
       if (url != null && !url.equals("null") && !url.equals("")) { 
        String fileName = url.toString().substring(
          url.toString().lastIndexOf("/") + 1, 
          url.toString().length()); 
        mediaFile = new File(tieDir, fileName); 
       } 
       processFile(mediaFile, url, position); 
       int pos = (Integer)v.getTag(); 
       downloadState[pos] = 1; 
      } 
     }); 
     convertView.setTag(holder); 
    } else { 
     holder = (ViewHolder) convertView.getTag(); 
    } 

    if (mDownloadList != null && mDownloadList.size() > 0) { 
     if (mDownloadList.get(position).getTitle() != null 
       && !mDownloadList.get(position).getTitle().equals("null") 
       && !mDownloadList.get(position).getTitle().equals("")) { 
      holder.txtTitle.setText(mDownloadList.get(position).getTitle()); 
     } 

     if (mDownloadList.get(position).getTheme() != null 
       && !mDownloadList.get(position).getTheme().equals("null") 
       && !mDownloadList.get(position).getTheme().equals("")) { 
      holder.txtTheme.setText(mDownloadList.get(position).getTheme()); 
     } 

     if (mDownloadList.get(position).getDate() != null 
       && !mDownloadList.get(position).getDate().equals("null") 
       && !mDownloadList.get(position).getDate().equals("")) { 
      holder.txtDate.setText(mDownloadList.get(position).getDate()); 
     } 

     if (downloadState[position] == 1) { 
      holder.imgDownload.setImageDrawable(ctx.getResources() 
        .getDrawable(R.drawable.ic_dloaded)); 
     } else { 
      holder.imgDownload.setImageDrawable(ctx.getResources() 
        .getDrawable(R.drawable.ic_dload)); 
     } 
    } 
    holder.imgDownload.setTag(position); 
    return convertView; 
}// getView 

protected void downloadFile(String url, int position, String fileName) { 

    Log.v(TAG, "Preparing to download"); 
    mProgressDialog = new ProgressDialog(ctx); 
    mProgressDialog.setMessage("Dowloading..."); 
    mProgressDialog.setIndeterminate(false); 
    mProgressDialog.setMax(100); 
    mProgressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL); 

    isSDCardPresent = Environment.getExternalStorageState().equals(
      Environment.MEDIA_MOUNTED); 
    if (!isSDCardPresent) { 
     noSDCardAlert(ctx); 
    } else { 
     if ((tieDir.exists()) && (tieDir != null)) { 
      if (NetworkConnection.isOnline(ctx)) { 
       if (tieDir.isDirectory()) { 
        Log.v(TAG, "if tie dir URL:::" + url); 
        new DownloadAudioAsync(ctx, position, fileName).execute(url); 
       } 
      } else { 
       ((DownloadListActivity) ctx) 
         .OpenNetErrDialog("Please check your internet connection..."); 
      } 
     } else { 
      boolean isDirectoryCreated = tieDir.mkdirs(); 
      if (isDirectoryCreated) { 
       Log.v(TAG, "if tie not dir URL:::" + url); 
       if (NetworkConnection.isOnline(ctx)) { 
        new DownloadAudioAsync(ctx, position, fileName).execute(url); 
       } else { 
        ((DownloadListActivity) ctx) 
          .OpenWiFiDialog("Please check your internet connection..."); 
       } 
      } 
     } 
    } 
} 

private void noSDCardAlert(Context ctx) { 
    AlertDialog.Builder ad = new AlertDialog.Builder(ctx); 
    ad.setMessage("No sd card present.."); 
    ad.setPositiveButton("OK", new DialogInterface.OnClickListener() { 
     public void onClick(DialogInterface dialog, int which) { 
      dialog.dismiss(); 
     } 
    }); 

    if (!((DownloadDetail) ctx).isFinishing()) { 
     ad.show(); 
    } 
} 

public void OpenDialog(String messageID) { 

    final Dialog dialog = new Dialog(ctx, 
      android.R.style.Theme_Translucent_NoTitleBar); 
    dialog.setContentView(R.layout.dialog_base); 
    dialog.getWindow().getAttributes().windowAnimations = android.R.style.Animation_Dialog; 
    dialog.setCancelable(false); 

    TextView alertMessage = (TextView) dialog.findViewById(R.id.txtMessage); 
    Button btnOK = (Button) dialog.findViewById(R.id.btnOk); 
    btnOK.setText("Show"); 
    alertMessage.setText(messageID); 
    dialog.show(); 
    btnOK.setOnClickListener(new OnClickListener() { 
     @Override 
     public void onClick(View v) { 
      dialog.dismiss(); 
     } 
    }); 
} 

protected void showPdf(File mediaFile) { 
    Intent intent = new Intent(Intent.ACTION_VIEW); 
    intent.setDataAndType(Uri.fromFile(mediaFile), "application/pdf"); 
    intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY); 
    ctx.startActivity(intent); 
} 

public class DownloadAudioAsync extends AsyncTask<String, String, String> { 
    Context ctx; 
    int pos; 
    private ProgressDialog pd; 
    String fileName; 

    public DownloadAudioAsync(Context ctx, int pos, String fileName) { 
     this.ctx = ctx; 
     this.pos = pos; 
     this.fileName = fileName; 
    } 

    @Override 
    protected void onPreExecute() { 
     super.onPreExecute(); 
     Log.v(TAG, "inside on pre execute"); 
     pd = new ProgressDialog(ctx); 
     pd.setMessage("Downloading...\nPlease wait.."); 
     pd.show(); 
    } 

    @Override 
    protected String doInBackground(String... aurl) { 
     int count; 

     try { 
      Log.v(TAG, 
        "inside do in background with url::" 
          + aurl[0].toString()); 
      aurl[0] = aurl[0].replaceAll(" ", "%20"); 
      URL url = new URL(aurl[0]); 

      URLConnection conexion = url.openConnection(); 
      conexion.connect(); 

      int lenghtOfFile = conexion.getContentLength(); 

      fileName = URLDecoder.decode(fileName, "UTF-8"); 
      InputStream input = new BufferedInputStream(url.openStream()); 
      OutputStream output = new FileOutputStream(tieDir + "/" 
        + fileName); 

      byte data[] = new byte[1024]; 

      long total = 0; 

      while ((count = input.read(data)) != -1) { 
       total += count; 

       publishProgress("" + (int) ((total * 100)/lenghtOfFile)); 
       output.write(data, 0, count); 
      } 

      output.flush(); 
      output.close(); 
      input.close(); 
     } catch (Exception e) { 
     } 
     return null; 
    } 

    @Override 
    protected void onPostExecute(String unused) { 
     if (!((DownloadListActivity) ctx).isFinishing()) { 
      pd.dismiss(); 
      updateView(pos); 
     } 
    } 

    private void updateView(int pos) { 
     View v = ((DownloadListActivity) ctx).menuListView.getChildAt(pos 
       - ((DownloadListActivity) ctx).menuListView 
         .getFirstVisiblePosition()); 
     ImageView imgDloadBtn = (ImageView) v.findViewById(R.id.imgDload); 
     imgDloadBtn.setImageDrawable(ctx.getResources().getDrawable(
       R.drawable.ic_dloaded)); 
     notifyDataSetChanged(); 
    } 
} 

private void processFile(File mediaFile, String url, int pos) { 
    if (url != null && !url.equals("null") && !url.equals("")) { 
     if (mediaFile != null) { 
      Log.v(TAG, "in processFile FileName " + mediaFile.getName()); 
      Log.v(TAG, "in processFile Position " + pos); 
      if(!mediaFile.exists()) { 
       Log.v(TAG, "in processFile Media file doesn't exists"); 
       downloadFile(url, pos, mediaFile.getName()); 
      } else { 
       Log.v(TAG, "in processFile Media file exists"); 
       try { 
        showPdf(mediaFile); 
       } catch (ActivityNotFoundException anfe) { 
        OpenDialog("PDF Reader is not installed on your device."); 
       } 
      } 
     } 
    } 
} 
}// DownloadAdapter 

मैं (गहराई explaination में के लिए धन्यवाद Knickedi करने के लिए) दृश्य रीसाइक्लिंग के लिए this post पढ़ा था: नीचे, मेरी एडाप्टर कोड है। लेकिन, मैं यह नहीं समझ सकता कि वास्तविक समस्या कहां है।

उत्तर

5

getview विधि जो जब भी आप अपने दृश्य स्क्रॉल करें, सही स्थिति आप setTag & getTag साथ खेलने के लिए है संभाल करने के लिए पुनः बनाने रखने के साथ जारी करना, कुछ stackvoerflow जवाब नीचे जाँच setTag & getTag को समझने के लिए:

Button in ListView using ArrayAdapter

Getting radio button value from custom list in android

और यहां तक ​​कि डाउनलोड की गई स्थिति को एक booleanarray में नीचे भी स्टोर करें:

int boxState[]; 

holder.imgDownload.setTag(position); 

अब तुम 1 के रूप में डाउनलोड बटन पर निर्धारित मूल्य पर क्लिक करें (बटन के onclick अंदर):

एडाप्टर निर्माता के भीतर, शुरू में शून्य सेट:

for (int i = 0; i < getData.size(); i++) { 
    boxState[i] = 0; 

    } 

एडाप्टर getview विधि के भीतर

pos = (Integer) v.getTag(); 
boxState[pos]=1; 

आखिरकार जब आप अपनी दृश्य को स्क्रॉल करते हैं तो निम्न स्थिति में चेक करें (गेटव्यू विधि के अंदर कोड नीचे रखें):

if (boxState[position] == 0) { 
      holder.imgDownload.setImageDrawable(ctx.getResources() 
        .getDrawable(R.drawable.ic_dloaded)); //which aren't downloaded 
     } else { 
      holder.imgDownload.setImageDrawable(ctx.getResources() 
        .getDrawable(R.drawable.ic_dload)); // which are downloaded. 
     } 
+0

धन्यवाद, यह काम कर रहा है लेकिन अब मुझे एक और समस्या का सामना करना पड़ रहा है। अगर मैं फ़ाइल डाउनलोड करने के लिए पहले आइटम के बटन पर क्लिक करता हूं, तो यह सही फ़ाइल डाउनलोड कर रहा है। लेकिन, जब मैं एक ही बटन पर फिर से क्लिक करता हूं, पहली पंक्ति में, फ़ाइल खोलने के बजाय, यह अंतिम फ़ाइल डाउनलोड करता है। मेरा कहना है कि, एक समय में, सूची में छह आइटम दिखाई दे रहे हैं। जब, मैं पहले आइटम में बटन पर क्लिक करता हूं, तो यह सही फ़ाइल डाउनलोड करता है, लेकिन जब मैं इसे फिर से क्लिक करता हूं, तो यह सूची दृश्य में 6 वें आइटम के यूआरएल से जुड़ी फाइल डाउनलोड करता है। मैंने अपना कोड अपडेट किया था। – Nitish

+0

बस इस लाइन की स्थिति बदलें 'holder.imgDownload.setTag (स्थिति);' बटन पर क्लिक करने से पहले रखें और फिर – RobinHood

+0

जांचें, कोशिश नहीं की। – Nitish

संबंधित मुद्दे