Android - 在活动中使用服务的方法? [英] Android - Using method from a Service in an Activity?

查看:25
本文介绍了Android - 在活动中使用服务的方法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的应用程序的服务中有以下方法:

I have the folowing method in a Service in my appplication:

public void switchSpeaker(boolean speakerFlag){

        if(speakerFlag){
        audio_service.setSpeakerphoneOn(false);
        }
        else{
        audio_service.setSpeakerphoneOn(true);
        }

    }

所以我的问题是能够在如下活动中使用这种方法的最佳和最有效的方法是什么

So my question is whats the best and most effective way to be able to use this method in an Activity like follows

final Button speaker_Button = (Button) findViewById(R.id.widget36);

            speaker_Button.setOnClickListener(new View.OnClickListener(){
                public void onClick(View v){

                    switchSpeaker(true); //method from Service

                }

            });

我必须做 AIDL 还是有更简单的方法?

Do I have to do an AIDL or is there a simpler way?

推荐答案

您必须向客户端公开服务的 switchSpeaker 方法.定义您的 .aidl 文件.然后从您的 Activity 绑定到该服务,只需调用 switchSpeaker.请参阅文档

You have to expose service`s switchSpeaker method for clients. Define your .aidl file. Than bind to that service from your activity and simply call switchSpeaker. See documentation

没有其他简单的方法可以调用这个方法,只有它是静态的)

No other simple way to call this method, only if it static)

这篇关于Android - 在活动中使用服务的方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆