/developers/samples/android/ui/window/BasicImmersiveMode/ |
D | README.md | 5 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/ |
D | README.md | 5 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/ |
D | README.md | 5 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/ |
D | AssetProvider.java | 75 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/ |
D | AssetProvider.java | 75 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/ |
D | README.md | 5 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/ |
D | README.md | 5 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/ |
D | AssetProvider.java | 79 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/ |
D | AssetProvider.java | 79 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/ |
D | MainActivity.java | 357 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/ |
D | MainActivity.java | 357 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/ |
D | AssetProvider.java | 92 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/ |
D | ViewfinderProcessor.java | 101 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/ |
D | ViewfinderProcessor.java | 101 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/ |
D | DrawableTintingFragment.java | 256 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/ |
D | DrawableTintingFragment.java | 256 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/ |
D | README.md | 8 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/ |
D | README.md | 8 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/ |
D | MyCloudProvider.java | 292 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/ |
D | MyCloudProvider.java | 292 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/ |
D | README.md | 13 with a reference to a color and a PorterDuff blend mode. The color and blend mode can be
|
/developers/build/prebuilts/gradle/DrawableTinting/ |
D | README.md | 13 with a reference to a color and a PorterDuff blend mode. The color and blend mode can be
|
/developers/samples/android/renderScript/BasicRenderScript/Application/ |
D | project.properties | 15 renderscript.support.mode=true
|
/developers/build/prebuilts/gradle/BasicRenderScript/Application/ |
D | project.properties | 15 renderscript.support.mode=true
|
/developers/samples/android/wearable/wear/SpeedTracker/ |
D | gradle.properties | 15 # When configured, Gradle will run in incubating parallel mode.
|