Welcome to the forum 👋, Guest

To access the forum content and all our services, you must register or log in to the forum. Becoming a member of the forum is completely free.

  • PËRSHËNDETJE VIZITOR!

    Nëse ju shfaqet ky mesazh do të thotë se ju nuk jeni regjistruar akoma. Anëtarët e rregjistruar kanë privilegjin të marrin pjesë në tema të ndryshme si dhe të komunikojnë me anëtarët e tjerë. Bëhu pjesë e forumit Netedy.com duke u REGJISTRUAR këtu ose nëse ke një llogari KYCU. Komunikim alternative i ketij forumi me vajza dhe djem nga te gjithe trevat shqiptare? Hyr ne: CHAT SHQIP.

[Android/Java] AsyncTask

centos

ⓃⒺⓉⒺⒹⓎ.ⒸⓄⓂ
ANETAR ✓
Regjistruar më
Dhj 13, 2004
Mesazhe
39,936
Kodi me poshte ndihmon aplikacionet e android qe te bashkveprojne me shpejt me Serverat e jashtem, per shkarkim te dhenash.

Java:
public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        
        //Ketu ekzekutohet AsyncTask
        new moleAsyncTask().execute("");
        
    }

private class moleAsyncTask extends AsyncTask<Void, Integer, Void> {
    int progress_status;

    @Override
    protected void onPreExecute() {
        // KTU STARTON KODI NR #1
        super.onPreExecute();
        progress_status = 0;
    }

    @Override
    protected Void doInBackground(Void... params) {
        // KTU BEHET CDOGJE ne Background (perdoruesi nuk sheh gje). Pra fillon tek #1 > #2
        while (progress_status < 100){
            progress_status +=2;
            publishProgress(progress_status);
            SystemClock.sleep(300);
        }
        return null;
    }
    @Override
    protected void onProgressUpdate(Integer... values) {
        // KTU VAZHDON PROGRESI. SHPEJTESIA APO MADHESIA QE PO SHKARKOHET.
        // Zakonisht perdoret per ProgressBar ose Loader(ex: Please Wait..)
        super.onProgressUpdate(values);
}
    @Override
    protected void onPostExecute(Void result) {
        // KTU DALIN REZULTATET DHE I SHFAQEN PERDORUESIT.
        super.onPostExecute(result);
    }
}
}
 
Jepe si link ta klikojme dhe ta instalojme direkt
 

Postime të reja

Theme customization system

You can customize some areas of the forum theme from this menu.

Choose the color combination according to your taste

Select Day/Night mode

You can use it by choosing the day and night modes that suit your style or needs.

Welcome to the forum 👋, Guest

To access the forum content and all our services, you must register or log in to the forum. Becoming a member of the forum is completely free.