Home | History | Annotate | Download | only in stk

Lines Matching refs:mTextMsg

47     TextMessage mTextMsg = null;
131 if (mTextMsg == null) {
141 setTitle(mTextMsg.title);
143 if (!(mTextMsg.iconSelfExplanatory && mTextMsg.icon != null)) {
144 mMessageView.setText(mTextMsg.text);
147 if (mTextMsg.icon == null) {
152 new BitmapDrawable(mTextMsg.icon));
161 if (StkApp.calculateDurationInMilis(mTextMsg.duration) == 0 &&
162 !mTextMsg.responseNeeded && mTextMsg.userClear) {
181 startTimeOut(mTextMsg.userClear);
247 outState.putParcelable(TEXT, mTextMsg);
254 mTextMsg = savedInstanceState.getParcelable(TEXT);
255 CatLog.d(LOG_TAG, "onRestoreInstanceState - [" + mTextMsg + "]");
277 if (mTextMsg.responseNeeded) {
295 mTextMsg = intent.getParcelableExtra("TEXT");
301 CatLog.d(LOG_TAG, "initFromIntent - [" + mTextMsg + "], sim id: " + mSlotId);
316 int dialogDuration = StkApp.calculateDurationInMilis(mTextMsg.duration);
319 if (mTextMsg.userClear == true && mTextMsg.responseNeeded == false) {