空指针 a a a a a a
空指针,明显没有绑定成功,绑定回调都没有走,不知道什么鬼。
而且我都搞不懂要不要在清单文件配置service
空指针,明显没有绑定成功,绑定回调都没有走,不知道什么鬼。
而且我都搞不懂要不要在清单文件配置service
2017-12-18
首先服务端清单文件中配置Service
<!-- 使用 android:exported="true" 属性将当前 Service 暴露出去,
使其它进程的组件也能与绑定当前 Service -->
<service android:name=".IRemoteService" android:exported="true"/>
2.其次在服务端中启动这个Service,代码如下:
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Intent intent = new Intent(this, IRemoteService.class);
startService(intent);
}
}
举报