Issue:
The constructor Intent(new View.OnClickListener(){}, Class<NewWindow>) is undefined.
Solution: Find out --
Intent intent = new Intent(this, NewWindow.class);
Change the this to
getApplicationContext() or StartClass.this .
Network programming and scalable micro-services in Azure
Issue:
The constructor Intent(new View.OnClickListener(){}, Class<NewWindow>) is undefined.
Solution: Find out --
Intent intent = new Intent(this, NewWindow.class);
Change the this to
getApplicationContext() or StartClass.this .
Comments
Post a Comment