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

1 2 3 4 5 6 7

  /cts/tests/tests/widget/src/android/widget/cts/
GalleryTest.java 52 import android.widget.Gallery;
59 * Test {@link Gallery}.
61 @TestTargetClass(Gallery.class)
63 private Gallery mGallery;
79 mGallery = (Gallery) mActivity.findViewById(R.id.gallery_test);
85 method = "Gallery",
90 method = "Gallery",
95 method = "Gallery",
101 new Gallery(mContext);
103 new Gallery(mContext, null)
184 final MyGallery gallery = (MyGallery) mActivity.findViewById(R.id.gallery_test); local
221 MyGallery gallery = new MyGallery(mContext); local
354 MyGallery gallery = new MyGallery(mContext); local
368 MyGallery gallery = new MyGallery(mContext); local
380 MyGallery gallery = new MyGallery(mContext); local
394 MyGallery gallery = new MyGallery(mContext); local
412 final MyGallery gallery = (MyGallery) getActivity().findViewById(R.id.gallery_test); local
430 MyGallery gallery = new MyGallery(mContext); local
445 final MyGallery gallery = (MyGallery) getActivity().findViewById(R.id.gallery_test); local
468 MyGallery gallery = new MyGallery(mContext); local
    [all...]
  /frameworks/base/docs/html/guide/tutorials/views/
hello-gallery.jd 1 page.title=Hello, Gallery
6 <p>A {@link android.widget.Gallery} is a View commonly used to display items in a horizontally scrolling list
16 &lt;Gallery xmlns:android="http://schemas.android.com/apk/res/android"
17 android:id="@+id/gallery"
32 Gallery g = (Gallery) findViewById(R.id.gallery);
42 <p>We start as usual: set the layout and capture the View we want (our Gallery).
43 We then set an Adapter, called ImageAdapter for the Gallery&mdash;this is a new class that
44 we'll create next. Then we create an item click listener for the Gallery. This is like a norma
    [all...]
  /packages/apps/Gallery/
Android.mk 8 LOCAL_PACKAGE_NAME := Gallery
  /cts/tests/src/android/widget/cts/
GalleryStubActivity.java 27 import android.widget.Gallery;
31 * A minimal application for {@link Gallery} test.
39 Gallery gallery = (Gallery) findViewById(R.id.gallery_test); local
41 gallery.setAdapter(adapter);
67 i.setLayoutParams(new Gallery.LayoutParams(136, 88));
MyGallery.java 27 import android.widget.Gallery;
30 * A minimal mock gallery for {@link Gallery} test.
32 public class MyGallery extends Gallery {
  /frameworks/base/docs/html/resources/tutorials/views/
hello-gallery.jd 1 page.title=Gallery
6 <p>{@link android.widget.Gallery} is a layout widget used to display items in a
9 <p>In this tutorial, you'll create a gallery of photos and then display a toast message each time a
10 gallery item is selected.</p>
21 &lt;Gallery xmlns:android="http://schemas.android.com/apk/res/android"
22 android:id="@+id/gallery"
37 Gallery g = (Gallery) findViewById(R.id.gallery);
48 {@link android.widget.Gallery} fro
    [all...]
  /development/samples/ApiDemos/res/layout/
gallery_1.xml 17 <Gallery xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/gallery"
gallery_2.xml 30 <Gallery android:id="@+id/gallery"
image_switcher_1.xml 28 <Gallery android:id="@+id/gallery"
  /development/samples/ApiDemos/src/com/example/android/apis/view/
Gallery1.java 32 import android.widget.Gallery;
45 // Reference the Gallery view
46 Gallery g = (Gallery) findViewById(R.id.gallery);
57 // We also want to show context menu for longpressed items in the gallery
103 i.setLayoutParams(new Gallery.LayoutParams(136, 88));
105 // The preferred Gallery item background
Gallery2.java 24 import android.widget.Gallery;
53 Gallery g = (Gallery) findViewById(R.id.gallery);
ImageSwitcher1.java 30 import android.widget.Gallery;
31 import android.widget.Gallery.LayoutParams;
54 Gallery g = (Gallery) findViewById(R.id.gallery);
99 i.setLayoutParams(new Gallery.LayoutParams(
  /packages/apps/Gallery/tests/
Android.mk 15 LOCAL_INSTRUMENTATION_FOR := Gallery
  /packages/apps/Gallery3D/
Android.mk 11 LOCAL_OVERRIDES_PACKAGES := Gallery
  /development/samples/Home/src/com/example/android/home/
Wallpaper.java 29 import android.widget.Gallery;
31 import android.widget.Gallery.LayoutParams;
38 * a gallery of stock photos.
57 private Gallery mGallery;
67 mGallery = (Gallery) findViewById(R.id.gallery);
141 i.setLayoutParams(new Gallery.LayoutParams(
  /development/samples/Home/res/layout/
wallpaper.xml 35 <Gallery android:id="@+id/gallery"
  /packages/apps/Camera/src/com/android/camera/gallery/
IImage.java 17 package com.android.camera.gallery;
23 * The interface of all images used in gallery.
IImageList.java 17 package com.android.camera.gallery;
40 * The interface of all image collections used in gallery.
Image.java 17 package com.android.camera.gallery;
23 * The class for normal images in gallery.
VideoList.java 17 package com.android.camera.gallery;
26 * A collection of all the <code>VideoObject</code> in gallery.
  /packages/apps/Gallery/src/com/android/camera/
GallerySettings.java 19 import com.android.gallery.R;
26 // This is the setting screen for Gallery.
  /packages/apps/Launcher2/res/layout/
wallpaper_chooser.xml 32 <Gallery android:id="@+id/gallery"
  /frameworks/base/core/java/android/widget/
Gallery.java 42 * The default values for the Gallery assume you will be using
44 * each View given to the Gallery from the Adapter. If you are not doing this,
45 * you may need to adjust some Gallery properties, such as the spacing.
47 * Views given to the Gallery should use {@link Gallery.LayoutParams} as their
50 * <p>See the <a href="{@docRoot}resources/tutorials/views/hello-gallery.html">Gallery
58 public class Gallery extends AbsSpinner implements GestureDetector.OnGestureListener {
60 private static final String TAG = "Gallery";
173 public Gallery(Context context)
    [all...]
  /sdk/layoutopt/libs/uix/src/resources/rules/
NestedScrollingWidgets.rule 15 widgets = ["HorizontalScrollView", "Gallery"]
  /packages/apps/Gallery/src/com/android/camera/gallery/
IImageList.java 17 package com.android.camera.gallery;
44 * The interface of all image collections used in gallery.

Completed in 287 milliseconds

1 2 3 4 5 6 7