我想创建一个不同类的对象,其中包含必需的方法,在我的服务中如何创建该类的对象并调用所需的方法。
我尝试过这样做,但应在下面的代码中传递哪些参数:
private PictureCapturingServiceImpl pictureService;
pictureService = new PictureCapturingServiceImpl();
// here its actually asking to pass Android.app.activity but this is a
// class extends Fire-base Service,so what parameters should be passed .
pictureService.startCapturing(this);
答案 0 :(得分:0)
如果您确实需要<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>
<h2>Cost Calculator</h2>
<p></p>
<p></p>
<p></p>
<div ng-app>
<input name="amount" ng-model="a" placeholder="Amount" />
<input name="adjustment" ng-model="b" placeholder="Adjustment" />
<input name="advance" ng-model="c" placeholder="Total" value='{{ a-b}}' />
<input name="balance" placeholder="Total" readonly required value='{{ a-b-c}}' />
</div>
</body>
</html>
个实例,那么您应该启动一些Activity
来执行此操作。
如果您需要Activity
的实例,则可以传递服务实例。