"Android" new TextView in service

Source: Internet
Author: User

In the activity of new TextView, found that the parameters passed in the context, not the activity must be, think: A new view in the service can be used normally?

In 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;        }

}
`

In the OnCreate of activity:
`

    myView = MyJobService.myView;                    if (myView != null) {                            ((RelativeLayout)findViewById(R.id.activity_main)).addView(myView);                    }

`

The final validation results are displayed correctly.

"Android" new TextView in service

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.