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

1 2 3 4 5 6 7 8 91011

  /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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
completion10.xml 6 <Gallery xmlns:android="http://schemas.android.com/apk/res/android"
7 android:id="@+id/gallery"
  /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...]
  /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 gallery = (Gallery) findViewById(R.id.gallery);
    [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 {
  /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
124 imageView.setLayoutParams(new Gallery.LayoutParams(
128 // The preferred Gallery item background
Gallery2.java 23 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(
  /development/samples/WiFiDirectDemo/res/values/
strings.xml 8 <string name="get_file_button">Launch Gallery</string>
12 <string name="client_text">This device will act as a client. Click on Gallery button to pick a local(stored) file</string>
  /device/moto/stingray/
generic_stingray.mk 1 # Add CameraBrowser for testing PTP support until Gallery supports it
  /packages/apps/Gallery/tests/
Android.mk 15 LOCAL_INSTRUMENTATION_FOR := Gallery
  /frameworks/base/tests/BiDiTests/src/com/android/bidi/
BiDiTestGalleryLtr.java 23 import android.widget.Gallery;
31 Gallery g = (Gallery) v.findViewById(R.id.galleryview);
BiDiTestGalleryRtl.java 23 import android.widget.Gallery;
31 Gallery g = (Gallery) v.findViewById(R.id.galleryview);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
UsbDeviceActivity.java 27 * USB service and springboards to the main Gallery activity
38 Intent intent = new Intent(this, Gallery.class);
43 Log.e(TAG, "unable to start Gallery activity", e);
  /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(
  /packages/apps/Gallery2/
Android.mk 14 LOCAL_OVERRIDES_PACKAGES := Gallery Gallery3D GalleryNew3D
  /development/samples/ApiDemos/res/layout/
gallery_1.xml 23 <Gallery 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/Home/res/layout/
wallpaper.xml 35 <Gallery android:id="@+id/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/Gallery2/src/com/android/gallery3d/photoeditor/
EffectsBar.java 56 // Create and show effects-gallery only if the clicked toggle isn't selected or it's
57 // selected but showing an active effect instead of effects-gallery. Set the clicked
58 // toggle selected only when its effects-gallery will be created and shown.
73 // Inflate scrollable effects-gallery and desired effects into effects-bar.
91 // Set the clicked effect active before exiting effects-gallery.
118 // Detach the active effect to prevent it stopping effects-gallery from gc.
155 * Exits from effects gallery or the active effect; then executes the runnable if applicable.
157 * @return true if exiting from effects gallery or the active effect; otherwise, false.
  /packages/apps/Launcher2/res/layout/
wallpaper_chooser.xml 32 <Gallery android:id="@+id/gallery"

Completed in 535 milliseconds

1 2 3 4 5 6 7 8 91011