Home
last modified time | relevance | path

Searched refs:mode (Results 1 – 25 of 45) sorted by relevance

12

/developers/samples/android/ui/window/BasicImmersiveMode/
DREADME.md5 Sample demonstrating the use of immersive mode to hide the system and navigation bars for
11 'Immersive Mode' is a new UI mode which improves 'hide full screen' and 'hide nav bar'
14 This sample demonstrates how to enable and disable immersive mode programmatically.
16 Immersive mode was introduced in Android 4.4 (Api Level 19). It is toggled using the
/developers/build/prebuilts/gradle/BasicImmersiveMode/
DREADME.md5 Sample demonstrating the use of immersive mode to hide the system and navigation bars for
11 'Immersive Mode' is a new UI mode which improves 'hide full screen' and 'hide nav bar'
14 This sample demonstrates how to enable and disable immersive mode programmatically.
16 Immersive mode was introduced in Android 4.4 (Api Level 19). It is toggled using the
/developers/build/prebuilts/gradle/AlwaysOn/
DREADME.md5 A basic sample showing how to support ambient mode for native Android Wear apps.
10 …hods for supporting your native app staying on the screen when the Wear device enters ambient mode.
12 …nt, onUpdateAmbient, and onExitAmbient to allow the simple native Wear app to support ambient mode.
14 In ambient mode, this app follows best practices by keeping most pixels black, avoiding large block…
16 In addition and most importantly, the app sleeps while in ambient mode for 20 seconds between any u…
/developers/build/prebuilts/gradle/ActionBarCompat-ShareActionProvider/Application/src/main/java/com/example/android/actionbarcompat/shareactionprovider/content/
DAssetProvider.java75 public AssetFileDescriptor openAssetFile(Uri uri, String mode) throws FileNotFoundException { in openAssetFile() argument
90 return super.openAssetFile(uri, mode); in openAssetFile()
/developers/samples/android/ui/actionbarcompat/ActionBarCompat-ShareActionProvider/Application/src/main/java/com/example/android/actionbarcompat/shareactionprovider/content/
DAssetProvider.java75 public AssetFileDescriptor openAssetFile(Uri uri, String mode) throws FileNotFoundException { in openAssetFile() argument
90 return super.openAssetFile(uri, mode); in openAssetFile()
/developers/build/prebuilts/gradle/ImmersiveMode/
DREADME.md5 One of the features introduced in KitKat is "immersive mode". Immersive mode gives the
7 click the "Toggle immersive mode" button, then try swiping the bar in and out!
/developers/samples/android/ui/window/ImmersiveMode/
DREADME.md5 One of the features introduced in KitKat is "immersive mode". Immersive mode gives the
7 click the "Toggle immersive mode" button, then try swiping the bar in and out!
/developers/samples/android/common/src/java/com/example/android/common/assetprovider/
DAssetProvider.java79 public AssetFileDescriptor openAssetFile (Uri uri, String mode) in openAssetFile() argument
87 if (!"r".equals(mode)) { in openAssetFile()
/developers/build/prebuilts/gradle/BeamLargeFiles/Application/src/main/java/com/example/android/common/assetprovider/
DAssetProvider.java79 public AssetFileDescriptor openAssetFile (Uri uri, String mode) in openAssetFile() argument
87 if (!"r".equals(mode)) { in openAssetFile()
/developers/build/prebuilts/gradle/RenderScriptIntrinsic/Application/src/main/java/com/example/android/renderscriptintrinsic/
DMainActivity.java357 for (int mode : modes) { in createThumbnail()
358 mFilterMode = mode; in createThumbnail()
359 float f = getFilterParameter(parameter[mode]); in createThumbnail()
366 ThumbnailRadioButton button = (ThumbnailRadioButton) findViewById(ids[mode]); in createThumbnail()
/developers/samples/android/renderScript/RenderScriptIntrinsic/Application/src/main/java/com/example/android/renderscriptintrinsic/
DMainActivity.java357 for (int mode : modes) { in createThumbnail()
358 mFilterMode = mode; in createThumbnail()
359 float f = getFilterParameter(parameter[mode]); in createThumbnail()
366 ThumbnailRadioButton button = (ThumbnailRadioButton) findViewById(ids[mode]); in createThumbnail()
/developers/demos/JustForUs/justforus/src/main/java/com/example/android/justforus/
DAssetProvider.java92 public AssetFileDescriptor openAssetFile (Uri uri, String mode) in openAssetFile() argument
100 if (!"r".equals(mode)) { in openAssetFile()
/developers/build/prebuilts/gradle/HdrViewfinder/Application/src/main/java/com/example/android/hdrviewfinder/
DViewfinderProcessor.java101 public void setRenderMode(int mode) { in setRenderMode() argument
102 mMode = mode; in setRenderMode()
/developers/samples/android/media/HdrViewfinder/Application/src/main/java/com/example/android/hdrviewfinder/
DViewfinderProcessor.java101 public void setRenderMode(int mode) { in setRenderMode() argument
102 mMode = mode; in setRenderMode()
/developers/samples/android/ui/DrawableTinting/Application/src/main/java/com/example/android/drawabletinting/
DDrawableTintingFragment.java256 public void updateTint(int color, PorterDuff.Mode mode) { in updateTint() argument
261 mMode = mode; in updateTint()
266 mode.toString())); in updateTint()
/developers/build/prebuilts/gradle/DrawableTinting/Application/src/main/java/com/example/android/drawabletinting/
DDrawableTintingFragment.java256 public void updateTint(int color, PorterDuff.Mode mode) { in updateTint() argument
261 mMode = mode; in updateTint()
266 mode.toString())); in updateTint()
/developers/build/prebuilts/gradle/MultiWindowPlayground/
DREADME.md8 Switch the sample app into multi-window mode to see how it affects
26 In split-screen mode, an activity can be started adjacent to the
38 In freeform mode (where applications can be freely resized), activities
/developers/samples/android/ui/window/MultiWindowPlayground/
DREADME.md8 Switch the sample app into multi-window mode to see how it affects
26 In split-screen mode, an activity can be started adjacent to the
38 In freeform mode (where applications can be freely resized), activities
/developers/build/prebuilts/gradle/StorageProvider/Application/src/main/java/com/example/android/storageprovider/
DMyCloudProvider.java292 public ParcelFileDescriptor openDocument(final String documentId, final String mode, in openDocument() argument
295 Log.v(TAG, "openDocument, mode: " + mode); in openDocument()
302 final int accessMode = ParcelFileDescriptor.parseMode(mode); in openDocument()
304 final boolean isWrite = (mode.indexOf('w') != -1); in openDocument()
322 " and mode " + mode); in openDocument()
/developers/samples/android/content/documentsUi/StorageProvider/Application/src/main/java/com/example/android/storageprovider/
DMyCloudProvider.java292 public ParcelFileDescriptor openDocument(final String documentId, final String mode, in openDocument() argument
295 Log.v(TAG, "openDocument, mode: " + mode); in openDocument()
302 final int accessMode = ParcelFileDescriptor.parseMode(mode); in openDocument()
304 final boolean isWrite = (mode.indexOf('w') != -1); in openDocument()
322 " and mode " + mode); in openDocument()
/developers/samples/android/ui/DrawableTinting/
DREADME.md13 with a reference to a color and a PorterDuff blend mode. The color and blend mode can be
/developers/build/prebuilts/gradle/DrawableTinting/
DREADME.md13 with a reference to a color and a PorterDuff blend mode. The color and blend mode can be
/developers/samples/android/renderScript/BasicRenderScript/Application/
Dproject.properties15 renderscript.support.mode=true
/developers/build/prebuilts/gradle/BasicRenderScript/Application/
Dproject.properties15 renderscript.support.mode=true
/developers/samples/android/wearable/wear/SpeedTracker/
Dgradle.properties15 # When configured, Gradle will run in incubating parallel mode.

12