!752 import android.graphics.*; p { S imageID = "#1001283"; // happy leo int borderColor = -1; final LinearLayout ll = new LinearLayout(androidContext()); ll.setOrientation(ll.VERTICAL); ImageView iv = new ImageView(androidContext()); iv.setBackgroundColor(borderColor); iv.setImageBitmap(BitmapFactory.decodeFile(loadLibrary(imageID).getPath())); ll.addView(iv); androidUI(r{ ScrollView sv = androidPrintLogScrollView(); ((ViewGroup) sv.getParent()).removeView(sv); ll.addView(sv); androidShow(ll); thread "later" { sleep(2000); print("\nHere we are! :-))"); } }); }