Searched defs:visibility (Results 1 - 25 of 51) sorted by relevance

123

/packages/apps/Email/src/com/android/email/activity/
H A DUiUtilities.java48 public static void setVisibilitySafe(View v, int visibility) { argument
50 v.setVisibility(visibility);
57 public static void setVisibilitySafe(View parent, int viewId, int visibility) { argument
58 setVisibilitySafe(parent.findViewById(viewId), visibility);
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
H A DSuggestionsListView.java44 void setVisibility(int visibility); argument
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DBaseInputView.java49 * Called when the window containing has change its visibility.
53 @Override protected void onWindowVisibilityChanged(int visibility) { argument
54 super.onWindowVisibilityChanged(visibility);
55 if ((visibility != VISIBLE) && (mOptionsDialog != null)) {
H A DCandidateTextView.java175 @Override protected void onWindowVisibilityChanged(int visibility) { argument
176 super.onWindowVisibilityChanged(visibility);
177 if ((visibility != VISIBLE) && (mCandidateDialog != null)) {
/packages/apps/UnifiedEmail/src/com/android/mail/
H A DMinTimeProgressView.java95 public void setVisibility(int visibility) { argument
96 // Whenever the visibility gets changed, clear dismissed
99 switch (visibility) {
107 super.setVisibility(visibility);
/packages/apps/Camera2/src/com/android/camera/
H A DCameraModule.java43 public void onPreviewVisibilityChanged(int visibility) { argument
/packages/apps/Camera2/src/com/android/camera/module/
H A DModuleController.java75 public void onPreviewVisibilityChanged(int visibility); argument
122 * Used by the app on configuring the bottom bar color and visibility.
/packages/apps/Camera2/src/com/android/camera/widget/
H A DExternalViewerButton.java32 * Also, it tracks whether it is shown by tracking the visibility change of all
33 * its ancestors, and keep the visibility of the clings that are registered to the
48 protected void onVisibilityChanged(View v, int visibility) { argument
49 super.onVisibilityChanged(v, visibility);
88 * Sets the current state of the button, which affects the visibility and image
104 // If visibility has changed, cling visibility was updated already,
105 // so only need to update it when visibility has not changed.
134 * Updates the visibility of clings based on whether the button is currently
H A DIndicatorIconController.java34 * IndicatorIconController sets the visibility and icon state of
38 * visibility of an indicator is set when an indicator's setting changes.
109 * Syncs a specific indicator's icon and visibility
110 * based on the enabled state and visibility of a button.
141 * Sets all indicators to the correct resource and visibility
153 * If the new visibility is different from the current visibility
154 * on a view, change the visibility and call any registered
157 private static void changeVisibility(View view, int visibility) { argument
158 if (view.getVisibility() != visibility) {
[all...]
H A DModeOptions.java162 public void onWindowVisibilityChanged(int visibility) { argument
163 super.onWindowVisibilityChanged(visibility);
164 if (visibility != VISIBLE && !mIsHiddenOrHiding) {
/packages/apps/Email/src/com/android/email/activity/setup/
H A DAccountSetupBasicsFragment.java115 * @param visibility {@link View#INVISIBLE}, {@link View#VISIBLE}, {@link View#GONE}
117 public void setManualSetupButtonVisibility(int visibility) { argument
118 mManualSetupView.setVisibility(visibility);
H A DAccountSetupFragment.java126 * Set visibility of the "previous" button
127 * @param visibility {@link View#INVISIBLE}, {@link View#VISIBLE}, {@link View#GONE}
129 public void setPreviousButtonVisibility(int visibility) { argument
130 mPreviousButton.setVisibility(visibility);
134 * Set the visibility of the "next" button
135 * @param visibility {@link View#INVISIBLE}, {@link View#VISIBLE}, {@link View#GONE}
137 public void setNextButtonVisibility(int visibility) { argument
138 mNextButton.setVisibility(visibility);
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
H A DHardwareCameraPreview.java69 protected void onVisibilityChanged(final View changedView, final int visibility) { argument
70 super.onVisibilityChanged(changedView, visibility);
71 mPreview.onVisibilityChanged(visibility);
H A DSoftwareCameraPreview.java63 protected void onVisibilityChanged(final View changedView, final int visibility) { argument
64 super.onVisibilityChanged(changedView, visibility);
65 mPreview.onVisibilityChanged(visibility);
H A DCameraPreview.java95 public void onVisibilityChanged(final int visibility) { argument
97 if (visibility == View.VISIBLE) {
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppShareInfo.java72 int direction, String destination, int visibility, int confirm, int status,
81 mVisibility = visibility;
71 BluetoothOppShareInfo(int id, Uri uri, String hint, String filename, String mimetype, int direction, String destination, int visibility, int confirm, int status, int totalBytes, int currentBytes, int timestamp, boolean mediaScanned) argument
/packages/apps/Camera/src/com/android/camera/ui/
H A DEffectSettingPopup.java140 public void setVisibility(int visibility) { argument
141 if (visibility == View.VISIBLE) {
150 super.setVisibility(visibility);
H A DTimeIntervalPopup.java131 public void setVisibility(int visibility) { argument
132 if (visibility == View.VISIBLE) {
139 super.setVisibility(visibility);
H A DTimerSettingPopup.java121 public void setVisibility(int visibility) { argument
122 if (visibility == View.VISIBLE) {
129 super.setVisibility(visibility);
/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DEffectSettingPopup.java138 public void setVisibility(int visibility) { argument
139 if (visibility == View.VISIBLE) {
148 super.setVisibility(visibility);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DButteryProgressBar.java176 protected void onVisibilityChanged(View changedView, int visibility) { argument
177 super.onVisibilityChanged(changedView, visibility);
179 if (visibility == VISIBLE) {
/packages/apps/Camera2/src/com/android/camera/captureintent/
H A DCaptureIntentModule.java168 public void onPreviewVisibilityChanged(int visibility) { argument
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DContactTileView.java161 public void setHorizontalDividerVisibility(int visibility) { argument
162 if (mHorizontalDivider != null) mHorizontalDivider.setVisibility(visibility);
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DUndoBarView.java170 private static float getTargetAlpha(int visibility) { argument
171 return (visibility == VISIBLE) ? 1f : 0f;
175 public void setVisibility(int visibility) { argument
176 mAlpha = getTargetAlpha(visibility);
178 super.setVisibility(visibility);
182 public void animateVisibility(int visibility) { argument
183 float target = getTargetAlpha(visibility);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DAppsCustomizeTabHost.java434 // NOTE: We should do this at the end since we check visibility state in some of the
440 private void setVisibilityOfSiblingsWithLowerZOrder(int visibility) { argument
454 child.setVisibility(visibility);

Completed in 743 milliseconds

123