android在Service中新建TextView
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android在Service中新建TextView相关的知识,希望对你有一定的参考价值。
在Activity中new TextView的时候,发现传入的参数是Context,不是必须为Activity,就想:在Service中新建一个View的话能否正常使用?
Service中:
`
public class MyJobService extends JobService {
public static TextView myView;
@Override
public boolean onStartJob(JobParameters params) {
myView = new TextView(this);
myView.setText("在Service中新建");
myView.setTextColor(Color.parseColor("#000000"));
return false;
}
@Override
public boolean onStopJob(JobParameters params) {
return false;
}
}
`
Activity的onCreate中:
`
myView = MyJobService.myView;
if (myView != null) {
((RelativeLayout)findViewById(R.id.activity_main)).addView(myView);
}
`
最终的验证结果是可以正常显示的。
以上是关于android在Service中新建TextView的主要内容,如果未能解决你的问题,请参考以下文章
Android中新建的文件在R没有显示相应的文件解决的方法总结
java.lang.ClassCastException: android.widget.RelativeLayout cannot be cast to android.widget.TextVie