/aosp12/packages/apps/DocumentsUI/src/com/android/documentsui/inspector/actions/ |
H A D | ActionView.java | 42 private final ImageButton mActionButton; field in ActionView 64 mActionButton = (ImageButton) findViewById(R.id.inspector_action_button); in ActionView() 79 mActionButton.setContentDescription(mContext.getString(action.getButtonLabel())); in init() 81 mActionButton.setOnClickListener(listener); in init() 115 mActionButton.setImageResource(mAction.getButtonIcon()); in showAction() 116 mActionButton.setVisibility(View.VISIBLE); in showAction() 118 mActionButton.setVisibility(View.GONE); in showAction()
|
/aosp12/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/calllog/ |
H A D | CallLogViewHolder.java | 56 private View mActionButton; field in CallLogViewHolder 74 mActionButton = itemView.findViewById(R.id.calllog_action_button); in CallLogViewHolder() 126 if (mActionButton == null) { in setUpActionButton() 134 ViewUtils.setVisible(mActionButton, contact != null || forceShowActionButton); in setUpActionButton() 135 ViewUtils.setEnabled(mActionButton, contact != null); in setUpActionButton() 138 ViewUtils.setOnClickListener(mActionButton, in setUpActionButton() 141 ViewUtils.setOnClickListener(mActionButton, null); in setUpActionButton()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/wallet/ui/ |
H A D | WalletView.java | 62 private final Button mActionButton; field in WalletView 88 mActionButton = requireViewById(R.id.wallet_action_button); in WalletView() 150 mActionButton.setAlpha(1f); in onCardScroll() 156 mActionButton.setAlpha(percentDistanceFromCenter); in onCardScroll() 187 animateViewsShown(mIcon, mCardLabel, mActionButton); in showCardCarousel() 255 return mActionButton; in getActionButton() 293 mActionButton.setVisibility(VISIBLE); in renderActionButton() 294 mActionButton.setText(actionButtonText); in renderActionButton() 295 mActionButton.setOnClickListener( in renderActionButton() 307 mActionButton.setVisibility(GONE); in renderActionButton()
|
/aosp12/packages/apps/Car/Messenger/src/com/android/car/messenger/core/ui/shared/ |
H A D | LoadingFrameLayout.java | 223 private TextView mActionButton; field in LoadingFrameLayout.ViewContainer 246 mActionButton = view.findViewById(R.id.loading_info_action_button); in inflateView() 292 if (mActionButton == null) { in setActionButtonClickListener() 295 mActionButton.setOnClickListener(actionButtonOnClickListener); in setActionButtonClickListener() 299 if (mActionButton == null) { in setActionButtonText() 303 mActionButton.setText(actionButtonTextResId); in setActionButtonText() 308 ViewUtils.setVisible(mActionButton, visible); in setActionButtonVisible()
|
/aosp12/packages/apps/TvSettings/Settings/src/com/android/tv/settings/deviceadmin/ |
H A D | DeviceAdminAdd.java | 106 Button mActionButton; field in DeviceAdminAdd 326 mActionButton.setEnabled(true); in onResume() 339 mActionButton.setEnabled(false); in onPause() 403 mActionButton = (Button) findViewById(R.id.action_button); in createAddDeviceAdminUi() 409 if (!mActionButton.isEnabled()) { in createAddDeviceAdminUi() 475 mActionButton.setText(R.string.remove_managed_profile_label); in updateInterface() 483 mActionButton.setEnabled(admin == null && !hasBaseRestriction); in updateInterface() 494 mActionButton.setText(R.string.remove_device_admin); in updateInterface() 495 mActionButton.setEnabled(false); in updateInterface() 505 mActionButton.setText(R.string.remove_device_admin); in updateInterface() [all …]
|
/aosp12/packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/ |
H A D | HeaderMessageDocumentHolder.java | 45 private final Button mActionButton; field in HeaderMessageDocumentHolder 57 mActionButton = (Button) itemView.findViewById(R.id.action_button); in HeaderMessageDocumentHolder() 64 mActionButton.setOnClickListener(this::onButtonClick); in bind() 104 mActionButton.setText(mMessage.getButtonString()); in bind()
|
/aosp12/packages/apps/Settings/src/com/android/settings/applications/specialaccess/deviceadmin/ |
H A D | DeviceAdminAdd.java | 124 Button mActionButton; field in DeviceAdminAdd 338 mActionButton.setFilterTouchesWhenObscured(true); in onCreate() 408 mActionButton = (Button) findViewById(R.id.action_button); in onCreate() 414 if (!mActionButton.isEnabled()) { in onCreate() 570 mActionButton.setEnabled(true); in onResume() 584 mActionButton.setEnabled(false); in onPause() 659 mActionButton.setText(R.string.remove_managed_profile_label); in updateInterface() 682 mActionButton.setText(R.string.remove_device_admin); in updateInterface() 683 mActionButton.setEnabled(false); in updateInterface() 693 mActionButton.setText(R.string.remove_device_admin); in updateInterface() [all …]
|
/aosp12/packages/apps/Car/Dialer/src/com/android/car/dialer/widget/ |
H A D | LoadingFrameLayout.java | 264 private TextView mActionButton; field in LoadingFrameLayout.ViewContainer 310 mActionButton = view.findViewById(mActionButtonId); in inflateView() 362 ViewUtils.setOnClickListener(mActionButton, actionButtonOnClickListener); in setActionButtonClickListener() 368 ViewUtils.setText(mActionButton, actionButtonTextResId); in setActionButtonText() 374 ViewUtils.setVisible(mActionButton, visible); in setActionButtonVisible()
|
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/quickstep/interaction/ |
H A D | TutorialController.java | 96 final Button mActionButton; field in TutorialController 132 mActionButton = rootView.findViewById(R.id.gesture_tutorial_fragment_action_button); in TutorialController() 436 mActionButton.setVisibility(View.INVISIBLE); in hideActionButton() 437 mActionButton.setOnClickListener(null); in hideActionButton() 442 mActionButton.setVisibility(View.VISIBLE); in showActionButton() 443 mActionButton.setOnClickListener(this::onActionButtonClicked); in showActionButton()
|
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/ |
H A D | ParametricEditor.java | 65 View mActionButton; field in ParametricEditor 168 mActionButton = actionButton; in setUtilityPanelUI()
|
/aosp12/frameworks/native/libs/input/ |
H A D | Input.cpp | 436 mActionButton = actionButton; in initialize() 462 mActionButton = other->mActionButton; in copyFrom() 692 mActionButton = parcel->readInt32(); in readFromParcel() 754 parcel->writeInt32(mActionButton); in writeToParcel()
|
/aosp12/frameworks/native/include/input/ |
H A D | Input.h | 556 inline int32_t getActionButton() const { return mActionButton; } in getActionButton() 558 inline void setActionButton(int32_t button) { mActionButton = button; } in setActionButton() 806 int32_t mActionButton; variable
|
/aosp12/frameworks/native/services/inputflinger/tests/ |
H A D | InputDispatcher_test.cpp | 1232 mActionButton = actionButton; in actionButton() 1280 mAction, mActionButton, mFlags, /* edgeFlags */ 0, AMETA_NONE, in build() 1295 int32_t mActionButton{0}; member in android::inputdispatcher::MotionEventBuilder
|