Home | History | Annotate | Download | only in conversation

Lines Matching defs:mShow

48     private boolean mShow;
85 showOrHide(!mShow, true);
89 final boolean oldShow = mShow;
90 mShow = show && mAdapter.getCount() > 1;
91 if (oldShow != mShow) {
93 mListener.onSimSelectorVisibilityChanged(mShow);
99 setAlpha(mShow ? 0.0f : 1.0f);
100 animate().alpha(mShow ? 1.0f : 0.0f)
106 setVisibility(mShow ? VISIBLE : GONE);
110 setVisibility(mShow ? VISIBLE : GONE);
114 mSimListView.setVisibility(mShow ? VISIBLE : GONE);
119 Animation.RELATIVE_TO_SELF, mShow ? 1.0f : 0.0f,
120 Animation.RELATIVE_TO_SELF, mShow ? 0.0f : 1.0f);
167 return mShow;