HomeSort by relevance Sort by last modified time
    Searched full:imageview (Results 76 - 100 of 1947) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/base/docs/html/training/displaying-bitmaps/
display-bitmap.jd 57 android.widget.ImageView} children. The main activity holds the {@link
104 <p>Here is an implementation of the details {@link android.app.Fragment} which holds the {@link android.widget.ImageView} children. This might seem like a perfectly reasonable approach, but can
111 private ImageView mImageView;
133 // image_detail_fragment.xml contains just an ImageView
135 mImageView = (ImageView) v.findViewById(R.id.imageView);
143 <strong>mImageView.setImageResource(resId);</strong> // Load image into ImageView
158 public void loadBitmap(int resId, ImageView imageView) {
200 public void loadBitmap(int resId, ImageView imageView)
    [all...]
  /external/chromium_org/ui/views/controls/
image_view.h 21 // ImageView class.
23 // An ImageView can display an image from an ImageSkia. If a size is provided,
24 // the ImageView will resize the provided image to fit if it is too big or will
29 class VIEWS_EXPORT ImageView : public View {
37 ImageView();
38 virtual ~ImageView();
49 // The returned image is still owned by the ImageView.
52 // Set the desired image size for the receiving ImageView.
134 DISALLOW_COPY_AND_ASSIGN(ImageView);
  /packages/apps/DeskClock/src/com/android/deskclock/
AnimatorUtils.java 27 import android.widget.ImageView;
56 public static final Property<ImageView, Integer> DRAWABLE_ALPHA =
57 new Property<ImageView, Integer>(Integer.class, "drawable.alpha") {
59 public Integer get(ImageView view) {
64 public void set(ImageView view, Integer value) {
69 public static final Property<ImageView, Integer> DRAWABLE_TINT =
70 new Property<ImageView, Integer>(Integer.class, "drawable.tint") {
72 public Integer get(ImageView view) {
77 public void set(ImageView view, Integer value) {
  /external/eyes-free/AccessCheck/src/com/android/accessibility/
AccessibilityValidationContentHandler.java 37 * If the Element tag is ImageView (or a subclass of ImageView), then the tag
40 * This class also has logic to ascertain the subclasses of ImageView and thus
56 * subclasses of ImageView.
64 * The ImageView class stored for easy comparison while handling content. It
91 * locate {@link ImageView} class.
110 * For each subclass of ImageView, test for existence of the specified
125 // ImageView, skip it.
166 * Set the class loader and ImageView class objects that will be used during
171 * when the ImageView Class object could not be found within th
    [all...]
  /packages/apps/Settings/res/layout/
widget.xml 35 <ImageView
44 <ImageView
53 <ImageView
71 <ImageView
80 <ImageView
90 <ImageView
108 <ImageView
117 <ImageView
126 <ImageView
144 <ImageView
    [all...]
  /development/samples/Support7Demos/src/com/example/android/supportv7/graphics/
ImageLoader.java 25 import android.widget.ImageView;
45 static void loadMediaStoreThumbnail(final ImageView imageView,
53 imageView.setImageBitmap(cachedValue);
64 imageView.getContext().getContentResolver(),
72 imageView.setImageBitmap(bitmap);
  /external/replicaisland/res/layout/
mainmenu.xml 6 <ImageView
16 <ImageView
34 <ImageView
42 <ImageView
53 <ImageView
82 <ImageView
  /packages/apps/Settings/src/com/android/settings/
IconPreferenceScreen.java 25 import android.widget.ImageView;
50 ImageView imageView = (ImageView) view.findViewById(R.id.icon);
51 if (imageView != null && mIcon != null) {
52 imageView.setImageDrawable(mIcon);
  /frameworks/base/docs/html/guide/topics/ui/layout/
gridview.jd 13 <li>{@link android.widget.ImageView}</li>
118 // create a new ImageView for each item referenced by the Adapter
120 ImageView imageView;
122 imageView = new ImageView(mContext);
123 imageView.setLayoutParams(new GridView.LayoutParams(85, 85));
124 imageView.setScaleType(ImageView.ScaleType.CENTER_CROP);
125 imageView.setPadding(8, 8, 8, 8)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/widget/
IndicatorIconController.java 23 import android.widget.ImageView;
46 private ImageView mFlashIndicator;
47 private ImageView mHdrIndicator;
48 private ImageView mPanoIndicator;
49 private ImageView mCountdownTimerIndicator;
51 private ImageView mExposureIndicatorN2;
52 private ImageView mExposureIndicatorN1;
53 private ImageView mExposureIndicatorP1;
54 private ImageView mExposureIndicatorP2;
69 mFlashIndicator = (ImageView) root.findViewById(R.id.flash_indicator)
    [all...]
  /cts/tests/tests/widget/res/layout/
cursoradapter_group0.xml 17 <ImageView xmlns:android="http://schemas.android.com/apk/res/android"
21 </ImageView>
cursoradapter_group1.xml 17 <ImageView xmlns:android="http://schemas.android.com/apk/res/android"
21 </ImageView>
  /development/samples/ApiDemos/res/layout/
image_block.xml 10 <ImageView android:id="@+id/ducky"
20 <ImageView android:id="@+id/woot"
30 <ImageView android:id="@+id/ball"
40 <ImageView android:id="@+id/block"
50 <ImageView android:id="@+id/jellies"
60 <ImageView android:id="@+id/mug"
70 <ImageView android:id="@+id/pencil"
80 <ImageView android:id="@+id/scissors"
print_bitmap.xml 17 <ImageView xmlns:android="http://schemas.android.com/apk/res/android"
23 </ImageView>
wallpaper_2.xml 6 <ImageView
9 android:id="@+id/imageview" />
  /development/samples/devbytes/animation/SlidingFragments/res/layout/
image_fragment.xml 16 <ImageView xmlns:android="http://schemas.android.com/apk/res/android"
20 </ImageView
  /development/samples/devbytes/graphics/BitmapAllocation/src/com/example/android/bitmapallocation/
BitmapAllocation.java 25 import android.widget.ImageView;
57 final ImageView imageview = (ImageView) findViewById(R.id.imageview); local
69 imageview.setImageBitmap(mCurrentBitmap);
72 imageview.setOnClickListener(new View.OnClickListener() {
86 imageview.setImageBitmap(mCurrentBitmap);
  /device/google/accessory/demokit/app/res/layout/
no_device.xml 11 <ImageView android:id="@+id/imageView1" android:layout_width="match_parent"
13 android:src="@drawable/demokit_splash" android:layout_weight="1"></ImageView>
  /external/chromium_org/chrome/browser/ui/tests/
ui_gfx_image_unittest.cc 26 scoped_ptr<views::ImageView> image_view(new views::ImageView());
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/res/
AttrResourceLoaderTest.java 5 import android.widget.ImageView;
40 String expected = "" + ImageView.ScaleType.FIT_CENTER.ordinal();
41 assertThat(attrResourceLoader.convertValueToEnum(ImageView.class, "android", "scaleType", "fitCenter"), equalTo(expected));
42 assertThat(attrResourceLoader.hasAttributeFor(ImageView.class, "android", "scaleType"), equalTo(true));
  /frameworks/base/tests/BiDiTests/src/com/android/bidi/
BiDiTestGalleryImages.java 22 import android.widget.ImageView;
23 import android.widget.ImageView.ScaleType;
63 ImageView i = new ImageView(mContext);
  /frameworks/base/tests/StatusBar/res/layout/
button_notification.xml 7 <ImageView
  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
CrossfadeImage.java 28 import android.widget.ImageView;
37 ImageView mImageView;
47 mImageView = (ImageView) findViewById(R.id.contact_picture);
48 mImageView.setScaleType(ImageView.ScaleType.FIT_CENTER);
  /frameworks/opt/photoviewer/res/layout/
photo_retry_button.xml 2 <ImageView
  /packages/apps/Camera/res/layout/
menu_indicators.xml 21 <ImageView
28 <ImageView
35 <ImageView
43 <ImageView

Completed in 797 milliseconds

1 2 34 5 6 7 8 91011>>