Home
last modified time | relevance | path

Searched refs:lockPill (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/allapps/
DPrivateProfileManager.java375 ViewGroup lockPill = mPSHeader.findViewById(R.id.ps_lock_unlock_button); in updateView() local
376 assert lockPill != null; in updateView()
377 TextView lockText = lockPill.findViewById(R.id.lock_text); in updateView()
391 lockPill.setVisibility(VISIBLE); in updateView()
392 lockPill.setOnClickListener(view -> lockingAction(/* lock */ true)); in updateView()
393 lockPill.setContentDescription(mUnLockedStateContentDesc); in updateView()
406 lockPill.setVisibility(VISIBLE); in updateView()
407 lockPill.setOnClickListener(view -> lockingAction(/* lock */ false)); in updateView()
408 lockPill.setContentDescription(mLockedStateContentDesc); in updateView()
415 lockPill.setVisibility(GONE); in updateView()