• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

Android - 在活动使用服务的方法?

用户头像
it1352
帮助1

问题说明

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

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?

正确答案

#1

您必须向客户端公开服务的 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)

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfiagc
系列文章
更多 icon
同类精品
更多 icon
继续加载