Lines Matching refs:mTextMsg
45 TextMessage mTextMsg = null; field in StkDialogActivity
112 if (mTextMsg == null) { in onCreate()
117 if (!mTextMsg.responseNeeded) { in onCreate()
127 alertDialogBuilder.setTitle(mTextMsg.title); in onCreate()
135 if (mTextMsg.icon != null) { in onCreate()
136 iv.setImageBitmap(mTextMsg.icon); in onCreate()
142 if ((mTextMsg.icon == null || !mTextMsg.iconSelfExplanatory) in onCreate()
143 && !TextUtils.isEmpty(mTextMsg.text)) { in onCreate()
144 tv.setText(mTextMsg.text); in onCreate()
165 if (StkApp.calculateDurationInMilis(mTextMsg.duration) == 0 && in onResume()
166 !mTextMsg.responseNeeded && mTextMsg.userClear) { in onResume()
246 outState.putParcelable(TEXT_KEY, mTextMsg); in onSaveInstanceState()
258 mTextMsg = savedInstanceState.getParcelable(TEXT_KEY); in onRestoreInstanceState()
280 if ((appService != null) && (mTextMsg != null) && !mTextMsg.responseNeeded) { in finish()
302 if (mTextMsg.responseNeeded) { in sendResponse()
324 mTextMsg = intent.getParcelableExtra("TEXT"); in initFromIntent()
330 … CatLog.d(LOG_TAG, "initFromIntent - [" + (TelephonyUtils.IS_DEBUGGABLE ? mTextMsg : "********") in initFromIntent()
346 if (mIsResponseSent || (mTextMsg.userClear && !mTextMsg.responseNeeded)) { in startTimeOut()
351 int duration = StkApp.calculateDurationInMilis(mTextMsg.duration); in startTimeOut()
354 if (mTextMsg.userClear) { in startTimeOut()