Home
last modified time | relevance | path

Searched refs:NetworkImageView (Results 1 – 3 of 3) sorted by relevance

/frameworks/volley/src/com/android/volley/toolbox/
DNetworkImageView.java32 public class NetworkImageView extends ImageView { class
52 public NetworkImageView(Context context) { in NetworkImageView() method in NetworkImageView
56 public NetworkImageView(Context context, AttributeSet attrs) { in NetworkImageView() method in NetworkImageView
60 public NetworkImageView(Context context, AttributeSet attrs, int defStyle) { in NetworkImageView() method in NetworkImageView
/frameworks/volley/tests/src/com/android/volley/toolbox/
DNetworkImageViewTest.java7 private NetworkImageView mNIV;
14 mNIV = new NetworkImageView(getInstrumentation().getContext()); in setUp()
/frameworks/base/docs/html/training/volley/
Drequest.jd66 <li>{@code NetworkImageView}&mdash;builds on {@code ImageLoader} and effectively replaces
68 the network via URL. {@code NetworkImageView} also manages canceling pending requests if
103 <h3>Use ImageLoader and NetworkImageView</h3>
105 <p>You can use {@code ImageLoader} and {@code NetworkImageView} in concert to efficiently
107 layout XML file, you use {@code NetworkImageView} in much the same way you would use
110 <pre>&lt;com.android.volley.toolbox.NetworkImageView
133 <p>However, {@code NetworkImageView} can do this for you if all you're doing is populating
138 NetworkImageView mNetworkImageView;
143 // Get the NetworkImageView that will display the image.
144 mNetworkImageView = (NetworkImageView) findViewById(R.id.networkImageView);