Lines Matching full:images
68 <img src="{@docRoot}images/training/panoramio-grid.png" />
160 To get the best scaling results for images, provide them as <a href="{@docRoot}tools/help/draw9patch.html">
162 If you provide low quality or small images in your layouts, they will appear pixelated, fuzzy, or grainy. This
163 is not a good experience for the user. Instead, use high-quality images.
174 The Android system has a limited amount of memory, so downloading and storing high-resolution images can often
179 <li>Load images only when they're displayed on the screen. For example, when displaying multiple images in
191 <li>If you fetch images from the network, use {@link android.os.AsyncTask}
195 <li>Scale down really large images to a more appropriate size as you download them; otherwise, downloading the image
196 itself may cause an "Out of Memory" exception. Here is sample code that scales down images while downloading: