| | |
| | | package com.okgoincar.base.gpsnav.util; |
| | | |
| | | import android.content.Context; |
| | | import android.content.Intent; |
| | | import android.os.Handler; |
| | | import android.os.Message; |
| | | |
| | |
| | | ttsManager = null; |
| | | } |
| | | |
| | | public void setVideoText(String s){ |
| | | try { |
| | | tts.playText(s); |
| | | }catch (Exception e){ |
| | | |
| | | } |
| | | public void setVideoText(String s) { |
| | | // try { |
| | | // tts.playText(s); |
| | | // }catch (Exception e){ |
| | | // |
| | | // } |
| | | Intent intent = new Intent(); |
| | | intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); |
| | | intent.setAction("com.wisdom.gps.action.tts"); |
| | | intent.putExtra("msg", s); |
| | | mContext.sendBroadcast(intent); |
| | | // sendBroadcast(intent); |
| | | } |
| | | |
| | | /**************************************************************************** |