/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
GalleryTest.java | 5 import android.widget.Gallery; 18 private Gallery gallery; field in class:GalleryTest 24 gallery = new Gallery(null); 26 gallery.setOnKeyListener(listener); 32 assertTrue(gallery.onKeyDown(KeyEvent.KEYCODE_DPAD_RIGHT, event)); 34 assertThat((Gallery) listener.view, sameInstance(gallery)); 40 assertTrue(gallery.onKeyDown(KeyEvent.KEYCODE_DPAD_RIGHT, event)) [all...] |
LayoutParamsTest.java | 3 import android.widget.Gallery; 15 Gallery.LayoutParams layoutParams = new Gallery.LayoutParams(123, 456);
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowGallery.java | 4 import android.widget.Gallery; 9 @Implements(Gallery.class) 12 @RealObject Gallery gallery; field in class:ShadowGallery 20 onKeyListener.onKey(gallery, keyCode, event);
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
ShadowAbsSpinnerAdapterViewBehaviorTest.java | 4 import android.widget.Gallery; 12 return new Gallery(RuntimeEnvironment.application);
|
ShadowLayoutParamsTest.java | 7 import android.widget.Gallery; 16 Gallery.LayoutParams layoutParams = new Gallery.LayoutParams(123, 456);
|
/packages/apps/DevCamera/res/values/ |
strings.xml | 12 <string name="gallery">Gallery</string>
|
/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"
|
/cts/tests/tests/widget/src/android/widget/cts/ |
GalleryTest.java | 46 import android.widget.Gallery; 61 * Test {@link Gallery}. 70 private Gallery mGallery; 80 mGallery = (Gallery) mActivity.findViewById(R.id.gallery_test); 86 new Gallery(mActivity); 88 new Gallery(mActivity, null); 90 new Gallery(mActivity, null, 0); 94 new Gallery(mActivity, attrs); 95 new Gallery(mActivity, attrs, 0); 101 new Gallery(null) 165 MyGallery gallery = new MyGallery(mActivity); local 219 MyGallery gallery = new MyGallery(mActivity); local 230 MyGallery gallery = new MyGallery(mActivity); local 239 MyGallery gallery = new MyGallery(mActivity); local 250 MyGallery gallery = new MyGallery(mActivity); local 274 MyGallery gallery = new MyGallery(mActivity); local [all...] |
Gallery_LayoutParamsTest.java | 24 import android.widget.Gallery; 35 * Test {@link Gallery.LayoutParams}. 45 new Gallery.LayoutParams(context, p); 47 Gallery.LayoutParams params = new Gallery.LayoutParams(320, 480); 48 new Gallery.LayoutParams(params);
|
GalleryCtsActivity.java | 25 import android.widget.Gallery; 30 * A minimal application for {@link Gallery} test. 38 Gallery gallery = (Gallery) findViewById(R.id.gallery_test); local 40 gallery.setAdapter(adapter); 66 i.setLayoutParams(new Gallery.LayoutParams(136, 88));
|
/external/libxml2/doc/devhelp/ |
style.css | 45 div.gallery-float 50 div.gallery-float img 54 div.gallery-spacer
|
/packages/apps/Gallery/ |
Android.mk | 8 LOCAL_PACKAGE_NAME := Gallery
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
Gallery.java | 24 /** Trampoline activity that launches the Gallery activity defined in IntentHelper. */ 25 public class Gallery extends Activity { 29 Intent intent = IntentHelper.getGalleryIntent(Gallery.this); 31 // it's already in a new task. Start Gallery activity and
|
/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>
|
/packages/apps/Gallery/tests/ |
Android.mk | 17 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);
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/res/values/ |
strings.xml | 21 <string name="gallery"> Go To Gallery </string> 25 <string name="galleryOpenButton" > Gallery </string>
|
/packages/apps/Camera2/res_p/values/ |
strings.xml | 18 <!-- Name of the Gallery app, for which we have an ActionBar button in Filmstrip. Should be kep in sync with the name of AOSP Gallery app [CHAR LIMIT=40]--> 19 <string name="gallery_app_name">Gallery</string>
|
/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/Dialer/java/com/android/dialer/callcomposer/ |
GalleryGridItemView.java | 32 /** Shows an item in the gallery picker grid view. Hosts an FileImageView with a checkbox. */ 39 private View gallery; field in class:GalleryGridItemView 52 gallery = findViewById(R.id.gallery); 56 gallery.setClipToOutline(true); 89 gallery.setVisibility(show ? VISIBLE : INVISIBLE);
|
/developers/samples/android/connectivity/wifidirect/DirectP2P/Application/src/main/res/values/ |
strings.xml | 19 <string name="get_file_button">Launch Gallery</string> 23 <string name="client_text">This device will act as a client. Click on Gallery button to pick a local(stored) file</string>
|
/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/ |
Android.mk | 29 LOCAL_OVERRIDES_PACKAGES := Gallery Gallery3D GalleryNew3D 48 # Use the following include to make gallery test apk
|