*/
package com.zhuanghongji.startservicefromanotherapp;
// Declare any non-default types here with import statements
public interface IAppServiceRemoteBinder extends android.os.IInterface {
/**
*/
public static abstract class Stub extends android.os.Binder implements com.zhuanghongji.startservicefromanotherapp.IAppServiceRemoteBinder {
private static final java.lang.String DESCRIPTOR = “com.zhuanghongji.startservicefromanotherapp.IAppServiceRemoteBinder”;
/**
*/
public Stub() {
this.attachInterface(this, DESCRIPTOR);
}
/**
Cast an IBinder object into an com.zhuanghongji.startservicefromanotherapp.IAppServiceRemoteBinder interface,
generating a proxy if needed.
*/
public static com.zhuanghongji.startservicefromanotherapp.IAppServiceRemoteBinder asInterface(android.os.IBinder obj) {
if ((obj == null)) {
return null;
}
android.os.IInterface iin = obj.queryLocalInterface(DESCRIPTOR);
if (((iin != null) && (iin instanceof com.zhuanghongji.startservicefromanotherapp.IAppServiceRemoteBinder))) {
return ((com.zhuanghongji.startservicefromanotherapp.IAppServiceRemoteBinder) iin);
}
return new com.zhuanghongji.startservicefromanotherapp.IAppServiceRemoteBinder.Stub.Proxy(obj);
}
@Override
public android.os.IBinder asBinder() {
return this;
}
@Override
public boolean onTransact(int code, android.os.Parcel data, android.os.Parcel reply, int flags) throws android.os.RemoteException {
switch (code) {
case INTERFACE_TRANSACTION: {
reply.writeString(DESCRIPTOR);
return true;
}
case TRANSACTION_basicTypes: {
data.enforceInterface(DESCRIPTOR);
int _arg0;
_arg0 = data.readInt();
long _arg1;
_arg1 = data.readLong();
boolean _arg2;
_arg2 = (0 != data.readInt());
float _arg3;
_arg3 = data.readFloat();
double _arg4;
_arg4 = data.readDouble();
java.lang.String _arg5;
_arg5 = data.readString();
this.basicTypes(_arg0, _arg1, _arg2, _arg3, _arg4, _arg5);
reply.writeNoException();
return true;
}
}
return super.onTransact(code, data, reply, flags);
}
private static class Proxy implements com.zhuanghongji.startservicefromanotherapp.IAppServiceRemoteBinder {
private android.os.IBinder mRemote;
Proxy(android.os.IBinder remote) {
mRemote = remote;
}
@Override
public android.os.IBinder asBinder() {
return mRemote;
}
public java.lang.String getInterfaceDescriptor() {
return DESCRIPTOR;
}
/**
Demonstrates some basic types that you can use as parameters
and return values in AIDL.
*/
@Override
public void basicTypes(int anInt, long aLong, boolean aBoolean, float aFloat, double aDouble, java.lang.String aString) throws android.os.RemoteException {
android.os.Parcel _data = android.os.Parcel.obtain();
android.os.Parcel _reply = android.os.Parcel.obtain();
try {
_data.writeInterfaceToken(DESCRIPTOR);
_data.writeInt(anInt);
_data.writeLong(aLong);
_data.writeInt(((aBoolean) ? (1) : (0)));
_data.writeFloat(aFloat);
_data.writeDouble(aDouble);
_data.writeString(aString);
mRemote.transact(Stub.TRANSACTION_basicTypes, _data, _reply, 0);
_reply.readException();
} finally {
_reply.recycle();
_data.recycle();
}
}
}
static final int TRANSACTION_basicTypes = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0);
}
/**
Demonstrates some basic types that you can use as parameters
and return values in AIDL.
*/
public void basicTypes(int anInt, long aLong, boolean aBoolean, float aFloat, double aDouble, java.lang.String aString) throws android.os.RemoteException;
}
/*
Stub对象是在被调用端进程,也就是服务端进程
*/
在Service中重写onBind()方法:
@Override
public IBinder onBind(Intent intent) {
return new IAppServiceRemoteBinder.Stub() {
@Override
public void basicTypes(int anInt, long aLong, boolean aBoolean, float aFloat, double aDouble, String aString) throws RemoteException {
// …
}
};
}
这时重写AnotherApp中的MainActivity:
public class MainActivity extends AppCompatActivity implements OnClickListener, ServiceConnection {
private Intent mServiceIntent;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
findViewById(R.id.btn_start_Service).setOnClickListener(this);
findViewById(R.id.btn_stop_Service).setOnClickListener(this);
findViewById(R.id.btn_bind_Service).setOnClickListener(this);
findViewById(R.id.btn_unbind_Service).setOnClickListener(this);
mServiceIntent = new Intent();
mServiceIntent.setComponent(new ComponentName(“com.zhuanghongji.startservicefromanotherapp”,
“com.zhuanghongji.startservicefromanotherapp.AppService”));
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.btn_start_Service:
startService(mServiceIntent);
break;
case R.id.btn_stop_Service:
stopService(mServiceIntent);
break;
case R.id.btn_bind_Service:
bindService(mServiceIntent, this, Context.BIND_AUTO_CREATE);
break;
case R.id.btn_unbind_Service:
unbindService(this);
break;
}
}
@Override
public void onServiceConnected(ComponentName name, IBinder service) {
Log.i(“TAG”, "Bind Service : " + service);
}
@Override
public void onServiceDisconnected(ComponentName name) {
}
}
重新安装后,点击“绑定外部服务”
会看到如下日志:
在app 中的IAppServiceRemoteBinder增加接口方法:void setData(String data);
复制该文件的包名com.zhuanghongji.startservicefromanotherapp
在AnotherApp中新建一个AIDL Folder
,再在里面新建一个包(包名是刚才复制的包名,否则会编译错误)。
将IAppServiceRemoteBinder.aidl
文件整个复制到刚才新建的包下。
// IAppServiceRemoteBinder.aidl
package com.zhuanghongji.startservicefromanotherapp;
// Declare any non-default types here with import statements
interface IAppServiceRemoteBinder {
/**
Demonstrates some basic types that you can use as parameters
and return values in AIDL.
*/
void basicTypes(int anInt, long aLong, boolean aBoolean, float aFloat,
double aDouble, String aString);
void setData(String data);
}
Build -> ReBuild Project 后在AppService中的onBind(Intent intent)中实现void setData(String data);
package com.zhuanghongji.startservicefromanotherapp;
public class AppService extends Service {
private String mData = “默认数据”;
private boolean isRunning = false;
public AppService() {
}
@Override
public void onCreate() {
super.onCreate();
Log.i(“TAG”, “AppService onCreate”);
new Thread(new Runnable() {
@Override
public void run() {
isRunning = true;
while (isRunning) {
Log.i(“TAG”, mData);
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}).start();
}
很多人在刚接触这个行业的时候或者是在遇到瓶颈期的时候,总会遇到一些问题,比如学了一段时间感觉没有方向感,不知道该从那里入手去学习,对此我整理了一些资料,需要的可以免费分享给大家
这里笔者分享一份自己收录整理上述技术体系图相关的几十套腾讯、头条、阿里、美团等公司19年的面试题,把技术点整理成了视频和PDF(实际上比预期多花了不少精力),包含知识脉络 + 诸多细节,由于篇幅有限,这里以图片的形式给大家展示一部分。如有需要点击这里前往我的GitHub免费获取。
【视频教程】
天道酬勤,只要你想,大厂offer并不是遥不可及!希望本篇文章能为你带来帮助,如果有问题,请在评论区留言。
系图相关的几十套腾讯、头条、阿里、美团等公司19年的面试题,把技术点整理成了视频和PDF(实际上比预期多花了不少精力),包含知识脉络 + 诸多细节,由于篇幅有限,这里以图片的形式给大家展示一部分。如有需要点击这里前往我的GitHub免费获取。
[外链图片转存中…(img-1wm8Y2Kj-1646652133134)]
[外链图片转存中…(img-NAwrqr98-1646652133135)]
【视频教程】
[外链图片转存中…(img-uBgmWcCD-1646652133135)]
天道酬勤,只要你想,大厂offer并不是遥不可及!希望本篇文章能为你带来帮助,如果有问题,请在评论区留言。