我想更新布局中的 Textview,当服务检测到未接来电时,我在我的服务的 onCreat 方法中使用此代码:
public void onCreate() {
super.onCreate();
final LayoutInflater mcInflator = (LayoutInflater) ctext.getSystemService(Context.LAYOUT_INFLATER_SERVICE );
bla bla bla bla bla
...
if (call.toString().contains("Missed")){
View mcLayout= mcInflator.inflate(R.layout.m_call, null );
TextView mc = (TextView) mcLayout.findViewById(R.id.mcText);
mc.setText("Missed Call");
}
if (call.toString().contains("Outgoing")){
bla bla bla bla bla ....
但是当我检查我的布局时,Textview 没有改变?请问有什么建议吗?