/frameworks/base/core/java/android/app/ |
D | ListFragment.java | 315 public void setListShown(boolean shown) { in setListShown() argument 316 setListShown(shown, true); in setListShown() 323 public void setListShownNoAnimation(boolean shown) { in setListShownNoAnimation() argument 324 setListShown(shown, false); in setListShownNoAnimation() 337 private void setListShown(boolean shown, boolean animate) { in setListShown() argument 342 if (mListShown == shown) { in setListShown() 345 mListShown = shown; in setListShown() 346 if (shown) { in setListShown()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
D | SignalTileView.java | 127 final boolean shown = isShown(); in setIcon() 128 setVisibility(mIn, shown, s.activityIn); in setIcon() 129 setVisibility(mOut, shown, s.activityOut); in setIcon() 132 private void setVisibility(View view, boolean shown, boolean visible) { in setVisibility() argument 133 final float newAlpha = shown && visible ? 1 : 0; in setVisibility() 135 if (shown) { in setVisibility()
|
/frameworks/support/v4/java/android/support/v4/app/ |
D | ListFragment.java | 257 public void setListShown(boolean shown) { in setListShown() argument 258 setListShown(shown, true); in setListShown() 265 public void setListShownNoAnimation(boolean shown) { in setListShownNoAnimation() argument 266 setListShown(shown, false); in setListShownNoAnimation() 279 private void setListShown(boolean shown, boolean animate) { in setListShown() argument 284 if (mListShown == shown) { in setListShown() 287 mListShown = shown; in setListShown() 288 if (shown) { in setListShown()
|
/frameworks/base/core/java/android/widget/ |
D | DatePicker.java | 380 public void setCalendarViewShown(boolean shown) { in setCalendarViewShown() argument 381 mDelegate.setCalendarViewShown(shown); in setCalendarViewShown() 411 public void setSpinnersShown(boolean shown) { in setSpinnersShown() argument 412 mDelegate.setSpinnersShown(shown); in setSpinnersShown() 464 void setCalendarViewShown(boolean shown); in setCalendarViewShown() argument 467 void setSpinnersShown(boolean shown); in setSpinnersShown() argument
|
D | DatePickerSpinnerDelegate.java | 355 public void setCalendarViewShown(boolean shown) { in setCalendarViewShown() argument 356 mCalendarView.setVisibility(shown ? View.VISIBLE : View.GONE); in setCalendarViewShown() 365 public void setSpinnersShown(boolean shown) { in setSpinnersShown() argument 366 mSpinners.setVisibility(shown ? View.VISIBLE : View.GONE); in setSpinnersShown()
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
D | BaseCardView.java | 652 private void animateInfoOffset(boolean shown) { in animateInfoOffset() argument 656 if (shown) { in animateInfoOffset() 668 mAnim = new InfoOffsetAnimation(mInfoOffset, shown ? extraHeight : 0); in animateInfoOffset() 695 private void animateInfoHeight(boolean shown) { in animateInfoHeight() argument 699 if (shown) { in animateInfoHeight() 711 mAnim = new InfoHeightAnimation(mInfoVisFraction, shown ? 1.0f : 0f); in animateInfoHeight() 740 private void animateInfoAlpha(boolean shown) { in animateInfoAlpha() argument 743 if (shown) { in animateInfoAlpha() 749 mAnim = new InfoAlphaAnimation(mInfoAlpha, shown ? 1.0f : 0.0f); in animateInfoAlpha()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | AccessibilityController.java | 606 public void setMagnifiedRegionBorderShownLocked(boolean shown, boolean animate) { in setMagnifiedRegionBorderShownLocked() argument 607 if (shown) { in setMagnifiedRegionBorderShownLocked() 611 mWindow.setShown(shown, animate); in setMagnifiedRegionBorderShownLocked() 704 public void setShown(boolean shown, boolean animate) { in setShown() argument 706 if (mShown == shown) { in setShown() 709 mShown = shown; in setShown() 710 mAnimationController.onFrameShownStateChanged(shown, animate); in setShown() 841 public void onFrameShownStateChanged(boolean shown, boolean animate) { in onFrameShownStateChanged() argument 843 shown ? 1 : 0, animate ? 1 : 0).sendToTarget(); in onFrameShownStateChanged() 850 final boolean shown = message.arg1 == 1; in handleMessage() [all …]
|
/frameworks/base/docs/html/training/tv/playback/ |
D | browse.jd | 68 <p>The application's main activity sets this view, as shown in the following example:</p> 93 manager, as shown in the following example:</p> 166 shown in figures 1 and 2. This method replaces the title string with the 181 appears in the upper-left corner of the browse fragment, as shown in figures 1 and 2.</li> 186 <p>The browse fragment shown in figure 1 lists the video category names (the row headers) in the 189 include an image view that displays an icon next to the category name, as shown in figure 2.</p> 260 {@link android.widget.ImageView} shown here.</p> 264 method to set the presenter for the row header, as shown in the following example.</p> 286 fragment activity is created, the headers are enabled and shown by default. The headers appear as 287 shown in figures 1 and 2 on this page.</li> [all …]
|
D | details.jd | 35 <strong>Note:</strong> The implementation example shown here uses an additional activity to 55 onBindDescription()} method to bind the view fields to your data objects, as shown in the 93 The following example code demonstrates how to use the presenter class shown in the 176 Next, create an activity class that uses the layout shown in the previous code example:
|
/frameworks/support/design/src/android/support/design/widget/ |
D | CollapsingToolbarLayout.java | 540 public void setScrimsShown(boolean shown) { in setScrimsShown() argument 541 setScrimsShown(shown, ViewCompat.isLaidOut(this) && !isInEditMode()); in setScrimsShown() 554 public void setScrimsShown(boolean shown, boolean animate) { in setScrimsShown() argument 555 if (mScrimsAreShown != shown) { in setScrimsShown() 557 animateScrim(shown ? 0xFF : 0x0); in setScrimsShown() 559 setScrimAlpha(shown ? 0xFF : 0x0); in setScrimsShown() 561 mScrimsAreShown = shown; in setScrimsShown()
|
/frameworks/base/core/java/com/android/internal/view/menu/ |
D | MenuItemImpl.java | 477 boolean setVisibleInt(boolean shown) { in setVisibleInt() argument 479 mFlags = (mFlags & ~HIDDEN) | (shown ? 0 : HIDDEN); in setVisibleInt() 483 public MenuItem setVisible(boolean shown) { in setVisible() argument 487 if (setVisibleInt(shown)) mMenu.onItemVisibleChanged(this); in setVisible()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | EventLogTags.logtags | 14 ## keyguardShowing: 1: Keyguard shown to the user (or keyguardOccluded) 16 ## bouncerShowing: 1: Bouncer currently shown to the user
|
/frameworks/support/v7/appcompat/src/android/support/v7/view/menu/ |
D | MenuItemImpl.java | 517 boolean setVisibleInt(boolean shown) { in setVisibleInt() argument 519 mFlags = (mFlags & ~HIDDEN) | (shown ? 0 : HIDDEN); in setVisibleInt() 524 public MenuItem setVisible(boolean shown) { in setVisible() argument 528 if (setVisibleInt(shown)) mMenu.onItemVisibleChanged(this); in setVisible()
|
/frameworks/base/proto/src/ |
D | metrics_constants.proto | 642 // OPEN: QS Airplane mode tile shown 650 // OPEN: QS Bluetooth tile shown 658 // OPEN: QS Cast tile shown 665 // OPEN: QS Cellular tile shown 672 // OPEN: QS Color inversion tile shown 686 // OPEN: QS Do not disturb tile shown 694 // OPEN: QS Flashlight tile shown 702 // OPEN: QS Hotspot tile shown 710 // OPEN: QS 3P tile shown 717 // OPEN: QS Location tile shown [all …]
|
/frameworks/base/docs/html/training/articles/ |
D | assistant.jd | 78 activates assistance, such as when they tap and hold the Home button ( shown 124 supplies activity-specific information with activity callbacks as shown in 214 As shown in Figure 3, the system uses the default implementations of {@link 220 the assistant with the text shown to the user by calling {@link 269 windows interfering with the overlay window shown in Figure 4. 290 in the overlay window (shown in step 3 in Figure 1) is specific to the 302 Some developers may wish to implement their own assistant. As shown in Figure 306 android.service.voice.VoiceInteractionSession} as shown in <a href=
|
/frameworks/base/docs/html/training/tv/tif/ |
D | ui.jd | 110 …ice.Session#onCreateOverlayView() TvInputService.Session.onCreateOverlayView()}, as shown here:</p> 169 shown in the following example.</p> 211 set of currently allowed content ratings. These considerations are shown in the following sample.</… 240 , as shown in the previous example.</p> 245 method, as shown here:</p> 274 , as shown in the following example. Note that when <code>null</code>
|
/frameworks/base/core/java/android/inputmethodservice/ |
D | InputMethodService.java | 1132 public void setExtractViewShown(boolean shown) { in setExtractViewShown() argument 1133 if (mExtractViewHidden == shown) { in setExtractViewShown() 1134 mExtractViewHidden = !shown; in setExtractViewShown() 1281 public void setCandidatesViewShown(boolean shown) { in setCandidatesViewShown() argument 1282 updateCandidatesVisibility(shown); in setCandidatesViewShown() 1283 if (!mShowInputRequested && mWindowVisible != shown) { in setCandidatesViewShown() 1287 if (shown) { in setCandidatesViewShown() 1295 void updateCandidatesVisibility(boolean shown) { in updateCandidatesVisibility() argument 1296 int vis = shown ? View.VISIBLE : getCandidatesHiddenVisibility(); in updateCandidatesVisibility()
|
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/ |
D | GlifLayout.java | 236 public void setProgressBarShown(boolean shown) { in setProgressBarShown() argument 238 if (shown) { in setProgressBarShown()
|
D | SetupWizardLayout.java | 397 public void setProgressBarShown(boolean shown) { in setProgressBarShown() argument 400 progressBar.setVisibility(shown ? View.VISIBLE : View.GONE); in setProgressBarShown() 401 } else if (shown) { in setProgressBarShown()
|
/frameworks/base/docs/html/training/appbar/ |
D | actions.jd | 49 be shown in the overflow menu, instead of being displayed on the app bar. 75 element for each item you want to include in the action bar, as shown in this 99 should be shown as a button on the app bar. If you set
|
/frameworks/base/docs/html/training/monitoring-device-state/ |
D | docking-monitoring.jd | 51 broadcast receiver as shown in the next snippet.</p> 84 device's dock-state, simply register a broadcast receiver in your application manifest as shown in
|
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/ |
D | PrintPreviewController.java | 103 public void setUiShown(boolean shown) { in setUiShown() argument 104 if (shown) { in setUiShown()
|
/frameworks/base/docs/html/training/wearables/ui/ |
D | cards.jd | 54 add cards to your app if the default card layout shown in figure 1 meets your needs.</p> 75 <p>The following sample code shows the code for the screen display shown in figure 1:</p> 123 <p>You can also add a card directly to your layout definition, as shown in figure 2. Use this
|
/frameworks/base/docs/html/guide/topics/media/ |
D | camera.jd | 216 The {@code getOutputMediaFileUri()} method in this example refers to the sample code shown in <a 270 The {@code getOutputMediaFileUri()} method in this example refers to the sample code shown in <a 315 href="#intent-video">video camera intent</a> examples shown in the previous sections.</p> 399 PackageManager.hasSystemFeature()} method, as shown in the example code below:</p> 425 and be sure to catch any exceptions, as shown in the code below:</p> 540 <p>A camera preview class, such as the example shown in the previous section, must be placed in the 605 android.widget.FrameLayout} element shown in the example above. Your camera activity must also 607 to modify a camera activity to attach the preview class shown in <a href="#camera-preview">Creating 633 refers to the example method shown in <a href="#access-camera">Accessing cameras</a>.</p> 893 <li>Configure {@link android.media.MediaRecorder} as shown in the code example above</li> [all …]
|
/frameworks/base/docs/html/wear/preview/features/ |
D | complications.jd | 218 An icon should represent the provider and will be shown in the provider 264 shown to the user when the user chooses a data provider. To include the 305 Complication types determine the kinds of data shown in a complication. 348 gauges can be shown without including text. 399 Exactly one of Icon/Short title is expected to be shown if either or 451 Title is expected to be shown if provided. 535 complication, or sent by the system when nothing should be shown in a
|