Note that there are some explanatory texts on larger screens.

plurals
  1. POwhy am not able to add a bitmap to the bitmap arraylist
    primarykey
    data
    text
    <p>why am not able to add a bitmap in the bitmap array list inside asynktask.</p> <pre><code>public static class YourMoves_Players extends AsyncTask&lt;String, String, String&gt; { // static String yourmove_players[]; @Override protected String doInBackground(String... args) { boolean failure = false; // TODO Auto-generated method stub // Check for success tag int success; Log.d("login.on create","YOURMOVE_PLAYERS Background"); try { // Building Parameters List&lt;NameValuePair&gt; params = new ArrayList&lt;NameValuePair&gt;(); params.add(new BasicNameValuePair("playerid", fb_id));//player_id Log.d("request!", "starting"); //Posting user data to script JSONObject json = jsonParser.makeHttpRequest( GETYOURMOVE_URL, "POST", params); if(json == null) { Log.d("json","json returning null"); return null; } success = json.getInt(TAG_SUCCESS); if (success == 1) { products = json.getJSONArray(TAG_PRODUCTS); Log.d("Notification","BEFORE FOR LOOP"); Log.d("",products.length()+" LENGTH"); for (int i = 0; i &lt; products.length(); i++) { JSONObject c = products.getJSONObject(i); String yourmove_pid = c.getString(TAG_YOURMOVE_ID); String player_name = c.getString(TAG_YOURMOVE_NAME); // yourmove_pic.add(Get_FB_Image.getFBImage(yourmove_pid)); Players player=new Players(yourmove_pid,player_name); yourmove_list.add(player); yourmove_id.add(yourmove_pid); yourmove.add(player_name); Log.d("Vs_facebook","going to add bitmap facebook image"); yourmove_pic.add(Get_FB_Image.getFBImage(yourmove_pid)); Log.d("Vs_facebook"," facebook image added"); Log.d("User Created!", json.toString()+"CONGRETS"); } Log.d("","AFTER FOR LOOP yourmove_id "+yourmove_id); return json.getString(TAG_MESSAGE); }else{ Log.d("Login Failure!", "SUCCESS FAILED"); return json.getString(TAG_MESSAGE); } } catch (JSONException e) { e.printStackTrace(); } catch(Exception e){} return null; } /** * After completing background task Dismiss the progress dialog * **/ } </code></pre> <p>"yourmove_pic" is a bitmap array list and "Get_FB_Image.getFBImage(yourmove_pid)" is the method from where am getting the facebook profile image of a user. but my app get stuck before executing this line . am getting the log message that i am printing before executing this line.<br> so what is the problem please help</p> <p>my Logcat message -----></p> <pre><code>09-19 10:21:48.999: I/Choreographer(2115): Skipped 77 frames! The application may be doing too much work on its main thread. 09-19 10:21:49.300: I/Choreographer(2115): Skipped 194 frames! The application may be doing too much work on its main thread. 09-19 10:21:49.350: D/Vs_facebook(2115): inside on start 09-19 10:21:49.390: D/(2115): Vs_FACEBOOK ON RESUME BEFORE ShowList 09-19 10:21:52.509: D/login.on create(2115): YOURMOVE_PLAYERS Background 09-19 10:21:52.560: D/request!(2115): starting 09-19 10:21:54.980: D/Notification(2115): BEFORE FOR LOOP 09-19 10:21:54.980: D/(2115): 4 LENGTH 09-19 10:21:55.000: D/Vs_facebook(2115): going to add bitmap facebook image </code></pre> <p>in my getFBImage am getting the profile picture like this</p> <pre><code>URL img_value = null; img_value = new URL("http://graph.facebook.com/"+fb_id+"/picture?type=small"); fb_image = BitmapFactory.decodeStream(img_value.openConnection().getInputStream()); return fb_image; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload