HomeSort by relevance Sort by last modified time
    Searched full:imageview (Results 1 - 25 of 1503) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/refactoring/usecompound/
compound1.info 3 android.widget.ImageView [18,0,90,72] <ImageView>
compound2.info 4 android.widget.ImageView [18,25,90,97] <ImageView>
compound3.info 3 android.widget.ImageView [0,0,72,72] <ImageView>
compound4.info 4 android.widget.ImageView [109,0,181,72] <ImageView>
compound5.info 3 android.widget.ImageView [0,26,72,98] <ImageView>
compound6.info 3 android.widget.ImageView [18,0,90,72] <ImageView>
compound7.info 3 android.widget.ImageView [18,0,90,72] <ImageView>
compound_all.info 3 android.widget.ImageView [18,0,90,72] <ImageView>
7 android.widget.ImageView [18,25,90,97] <ImageView>
9 android.widget.ImageView [0,0,72,72] <ImageView>
13 android.widget.ImageView [109,0,181,72] <ImageView>
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
sample3.info 3 android.widget.ImageView [0,36,128,248] <ImageView>
  /frameworks/base/tests/TransitionTests/res/layout/
resources_test_layout.xml 2 <ImageView
  /cts/tests/tests/widget/src/android/widget/cts/
ImageViewTest.java 44 import android.widget.ImageView;
45 import android.widget.ImageView.ScaleType;
51 * Test {@link ImageView}.
54 private ImageView mImageView;
62 * Find the ImageView specified by id.
65 * @return the ImageView
67 private ImageView findImageViewById(int id) {
68 return (ImageView) mActivity.findViewById(id);
107 new ImageView(mActivity);
109 new ImageView(mActivity, null)
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ImageViewTest.java 10 import android.widget.ImageView;
29 private ImageView imageView;
36 imageView = new ImageView(Robolectric.application);
37 imageView.setImageBitmap(bitmap);
42 imageView.setImageMatrix(new Matrix());
44 visualize(imageView));
48 imageView.setImageMatrix(matrix);
50 visualize(imageView));
    [all...]
  /external/replicaisland/res/layout/
animation_player.xml 2 <ImageView xmlns:android="http://schemas.android.com/apk/res/android"
8 </ImageView>
  /development/samples/ApiDemos/res/layout/
shape_drawable_1.xml 28 <ImageView
33 <ImageView
38 <ImageView
43 <ImageView
48 <ImageView
53 <ImageView
58 <ImageView
63 <ImageView
68 <ImageView
  /frameworks/base/tools/layoutlib/bridge/resources/bars/
navigation_bar.xml 7 <ImageView
10 <ImageView
13 <ImageView
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
ImageDownloader.java 33 import android.widget.ImageView;
48 * This helper class download images from the Internet and binds those with the provided ImageView.
90 * Download the specified image from the Internet and binds it to the provided ImageView. The
92 * otherwise. A null bitmap will be associated to the ImageView if an error occurs.
95 * @param imageView The ImageView to bind the downloaded image to.
97 public void download(String url, ImageView imageView) {
98 download(url, imageView, null);
102 * Same as {@link #download(String, ImageView)}, with the possibility to provide an additiona
    [all...]
  /external/chromium_org/ui/views/controls/
image_view.cc 16 ImageView::ImageView()
23 ImageView::~ImageView() {
26 void ImageView::SetImage(const gfx::ImageSkia& img) {
34 void ImageView::SetImage(const gfx::ImageSkia* image_skia) {
43 const gfx::ImageSkia& ImageView::GetImage() {
47 void ImageView::SetImageSize(const gfx::Size& image_size) {
53 bool ImageView::GetImageSize(gfx::Size* image_size) {
60 gfx::Rect ImageView::GetImageBounds() const
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/matchers/
HasResourceMatcher.java 3 import android.widget.ImageView;
11 public class HasResourceMatcher extends TypeSafeMatcher<ImageView> {
20 public boolean matchesSafely(ImageView actual) {
42 public static Matcher<ImageView> hasResource(int expectedResourceId) {
  /frameworks/base/docs/html/training/displaying-bitmaps/
process-bitmap.jd 55 android.widget.ImageView} using {@link android.os.AsyncTask} and <a
62 private final WeakReference&lt;ImageView&gt; imageViewReference;
65 public BitmapWorkerTask(ImageView imageView) {
66 // Use a WeakReference to ensure the ImageView can be garbage collected
67 imageViewReference = new WeakReference&lt;ImageView&gt;(imageView);
77 // Once complete, see if ImageView is still around and set bitmap.
81 final ImageView imageView = imageViewReference.get()
    [all...]
  /development/samples/FixedGridLayout/res/layout/
main.xml 11 <ImageView
16 <ImageView
21 <ImageView
26 <ImageView
31 <ImageView
36 <ImageView
  /frameworks/base/core/java/android/widget/
ImageSwitcher.java 40 ImageView image = (ImageView)this.getNextView();
47 ImageView image = (ImageView)this.getNextView();
54 ImageView image = (ImageView)this.getNextView();
  /development/samples/ApiDemos/src/com/example/android/apis/view/
Gallery1.java 33 import android.widget.ImageView;
118 ImageView imageView;
120 convertView = new ImageView(mContext);
122 imageView = (ImageView) convertView;
123 imageView.setScaleType(ImageView.ScaleType.FIT_XY);
124 imageView.setLayoutParams(new Gallery.LayoutParams(
129 imageView.setBackgroundResource(mGalleryItemBackground)
    [all...]
  /development/samples/training/ContactsList/src/com/example/android/contactslist/util/
ImageLoader.java 30 import android.widget.ImageView;
39 * ImageView. It handles things like using a memory and disk cache, running the work in a background
64 * Load an image specified by the data parameter into an ImageView (override
70 * @param imageView The ImageView to bind the downloaded image to.
72 public void loadImage(Object data, ImageView imageView) {
74 imageView.setImageBitmap(mLoadingBitmap);
86 imageView.setImageBitmap(bitmap);
87 } else if (cancelPotentialWork(data, imageView)) {
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/image_editor/
image_view.js 15 function ImageView(container, viewport, metadataCache) {
32 this.contentCache_ = new ImageView.Cache(2);
38 this.screenCache_ = new ImageView.Cache(5);
59 ImageView.MODE_TRANSITION_DURATION = 350;
65 ImageView.FAST_SCROLL_INTERVAL = 300;
70 ImageView.LOAD_TYPE_CACHED_FULL = 0;
75 ImageView.LOAD_TYPE_CACHED_SCREEN = 1;
80 ImageView.LOAD_TYPE_IMAGE_FILE = 2;
85 ImageView.LOAD_TYPE_VIDEO_FILE = 3;
90 ImageView.LOAD_TYPE_ERROR = 4
    [all...]
  /packages/apps/Stk/src/com/android/stk/
StkMenuAdapter.java 26 import android.widget.ImageView;
57 ImageView imageView = ((ImageView) convertView.findViewById(R.id.icon));
59 imageView.setVisibility(View.GONE);
61 imageView.setImageBitmap(item.icon);
62 imageView.setVisibility(View.VISIBLE);

Completed in 1208 milliseconds

1 2 3 4 5 6 7 8 91011>>