Lines Matching refs:mTextMsg
46 TextMessage mTextMsg = null; field in StkDialogActivity
113 if (mTextMsg == null) { in onCreate()
118 if (!mTextMsg.responseNeeded) { in onCreate()
128 alertDialogBuilder.setTitle(mTextMsg.title); in onCreate()
136 if (mTextMsg.icon != null) { in onCreate()
137 iv.setImageBitmap(mTextMsg.icon); in onCreate()
143 if ((mTextMsg.icon == null || !mTextMsg.iconSelfExplanatory) in onCreate()
144 && !TextUtils.isEmpty(mTextMsg.text)) { in onCreate()
145 tv.setText(mTextMsg.text); in onCreate()
166 if (StkApp.calculateDurationInMilis(mTextMsg.duration) == 0 && in onResume()
167 !mTextMsg.responseNeeded && mTextMsg.userClear) { in onResume()
247 outState.putParcelable(TEXT_KEY, mTextMsg); in onSaveInstanceState()
259 mTextMsg = savedInstanceState.getParcelable(TEXT_KEY); in onRestoreInstanceState()
281 if ((appService != null) && (mTextMsg != null) && !mTextMsg.responseNeeded) { in finish()
303 if (mTextMsg.responseNeeded) { in sendResponse()
325 mTextMsg = intent.getParcelableExtra("TEXT"); in initFromIntent()
331 … CatLog.d(LOG_TAG, "initFromIntent - [" + (TelephonyUtils.IS_DEBUGGABLE ? mTextMsg : "********") in initFromIntent()
347 if (mIsResponseSent || (mTextMsg.userClear && !mTextMsg.responseNeeded)) { in startTimeOut()
352 int duration = StkApp.calculateDurationInMilis(mTextMsg.duration); in startTimeOut()
355 if (mTextMsg.userClear) { in startTimeOut()