第14天-02-AIDL调用远程服务

emmm,这个我也刚学,就当是笔记吧,先记下来,慢慢学习。我们给自己应用搞个服务可以用来支付。总体思路是这样的。我们写两个程序,一个相当于支付宝,一个相当于饿了么。分别命名为alipay和fish。啊哈哈哈。先看一下最终实现效果(录屏效果不好,凑活看吧)在这里插入图片描述

现在开始创建第一个项目alipay。

先new一个service,命名为AlipayService在这里插入图片描述
然后写代码实现该服务`package com.glsite.alipay;

import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.provider.Settings;

public class AlipayService extends Service {
public AlipayService() {
}

@Override
public IBinder onBind(Intent intent) {
    // TODO: Return the communication channel to the service.
    throw new UnsupportedOperationException("Not yet implemented");
}

@Override
public void onCreate() {
    System.out.println("oncreate" );
    super.onCreate();
}

@Override
public void onDestroy() {
    System.out.println("ondestroy");
    super.onDestroy();
}

/**
 * 安全支付的服务名
 * @param username
 * 用户名
 * @param password
 * 密码
 * @param money
 * 钱
 * @param timestamp
 * 时间戳
 * @return
 * 自定义结果吗
 */
public int safepay(String username,String password,float money ,long timestamp){
    System.out.println("加密的username");
    System.out.println("加密的password");
    System.out.println("提交数据到支付宝服务器");
    if (money > 5000){
        return  505;
    }
    if("zhangsan".equals(username) && "123".equals(password)){
        return  200;
    }
    else{
        return 300;
    }
}

}
到此,我们的服务内容已经实现了,现在我们在main目录下new一个directionry,命名为aidl![在这里插入图片描述](https://img-blog.csdnimg.cn/20190821144511802.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80MzQ2MDA4OA==,size_16,color_FFFFFF,t_70) 在该目录下再new一个package,命名为com.glsite.alipay ![在这里插入图片描述](https://img-blog.csdnimg.cn/2019082114473491.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80MzQ2MDA4OA==,size_16,color_FFFFFF,t_70) 在该目录下新建一个AIDL,命名为IAlipayService![在这里插入图片描述](https://img-blog.csdnimg.cn/20190821145032626.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80MzQ2MDA4OA==,size_16,color_FFFFFF,t_70) 接下来我将代码贴出来。 mainactivity代码就是原始的,不用动 alipayserrvice代码package com.glsite.alipay;

import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.os.RemoteException;
import android.provider.Settings;

public class AlipayService extends Service {
public AlipayService() {
}
private class MyBinder extends IAlipayService.Stub{
@Override
public int callSafepay(String username, String password, float money, long timestamp) throws RemoteException {
return safepay(username,password,money,timestamp);
}
}

@Override
public IBinder onBind(Intent intent) {
    // TODO: Return the communication channel to the service.
    return new MyBinder();
}

@Override
public void onCreate() {
    System.out.println("oncreate" );
    super.onCreate();
}

@Override
public void onDestroy() {
    System.out.println("ondestroy");
    super.onDestroy();
}

/**
 * 安全支付的服务名
 * @param username
 * 用户名
 * @param password
 * 密码
 * @param money
 * 钱
 * @param timestamp
 * 时间戳
 * @return
 * 自定义结果吗
 */
public int safepay(String username,String password,float money ,long timestamp){
    System.out.println("加密的username");
    System.out.println("加密的password");
    System.out.println("提交数据到支付宝服务器");
    if (money > 5000){
        return  505;
    }
    if("zhangsan".equals(username) && "123".equals(password)){
        return  200;
    }
    else{
        return 300;
    }
}

}
`
IAlipayService.aidl代码

// IAlipayService.aidl
package com.glsite.alipay;

// Declare any non-default types here with import statements

interface IAlipayService {
//调用支付的远程接口
  int callSafepay(String username,String password,float money ,long timestamp);
}

最后,也是最重要的,一定要在注册文件中加入一个意图,具体代码如下

<service android:name=".AlipayService" android:enabled="true" android:exported="true"> <intent-filter> <action android:name="com.glsite.alipay"/> </intent-filter> </service>
在这里插入图片描述
这个时候,简易的支付程序就写好了,下面就再写一个程序来调用它。写一个华丽的分割线吧。

+++++++++++++++++++++++++++++++++++++++++++

我们将刚刚的aidl复制到新建项目的main目录下
mainactivity代码

package com.glsite.fish;

import android.content.ComponentName;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.IBinder;
import android.os.RemoteException;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Toast;

import com.glsite.alipay.IAlipayService;

public class MainActivity extends AppCompatActivity {

    private IAlipayService mIService;
    private MyConn mConn = null;

    private  class MyConn implements ServiceConnection{
        @Override
        public void onServiceConnected(ComponentName componentName, IBinder service) {
            System.out.println("成功连接服务");
            mIService = IAlipayService.Stub.asInterface(service);
        }

        @Override
        public void onServiceDisconnected(ComponentName componentName) {

        }
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Intent intent = new Intent();
        intent.setAction("com.glsite.alipay");
        //远程调用服务在安卓8.0系统及以上,也需要指定组建名,也就是显式调用
        intent.setComponent(new ComponentName("com.glsite.alipay","com.glsite.alipay.AlipayService"));
        mConn = new MyConn();
        bindService(intent,mConn,BIND_AUTO_CREATE);
    }

    /**
     * 调用远程支付的方法,支付两元购买老婆
     * @param view
     */
    public void click(View view) {
        try {
            int resultcode = mIService.callSafepay("zhangsan", "123", 2.00f, System.currentTimeMillis());
            switch (resultcode) {
                case 200:
                    Toast.makeText(this,"支付成功", Toast.LENGTH_SHORT).show();

                    break;
                case 404:
                    Toast.makeText(this,"银行卡余额不足", Toast.LENGTH_SHORT).show();
                    break;
                case 300:
                    Toast.makeText(this,"用户名或密码错误", Toast.LENGTH_SHORT).show();
                    break;

                default:
                    break;
            }
        } catch (RemoteException e) {
            e.printStackTrace();
        }
    }
}

activity_main代码

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="调用支付宝支付"
        android:onClick="click"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>

此时,所有代码写好,完事了。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值