[Solved] android startActivity Nullpointer exception [closed]
DetailActivity is just that, an Activity. You cannot access methods in it as you would an object. The only way to do so is to make that method static and do DetailActivity.showHtml() but this is not recommended. The other problem is that you are not creating that Activity properly. You need to start it as … Read more