kotlin简单实现AIDL进程间通信
Posted zhangjin1120
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了kotlin简单实现AIDL进程间通信相关的知识,希望对你有一定的参考价值。
上一篇:java简单实现AIDL进程通信,是java版的,现在写一篇kotlin的。
具体步骤和上篇文章一样,我直接贴代码。
- 服务端NameService
class NameService : Service()
override fun onBind(intent: Intent): IBinder?
return ServiceStub()
class ServiceStub : IGetNameInterface.Stub()
override fun getInfo(): String
return "zhangjin"
- 客户端MainActivity
class MainActivity : AppCompatActivity()
var mGetNameService: IGetNameInterface? = null
override fun onCreate(savedInstanceState: Bundle?)
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
var intent = Intent()
intent.component =
ComponentName("com.exp.kotlinservice", "com.exp.kotlinservice.NameService")
var connection = object : ServiceConnection
override fun onServiceConnected(name: ComponentName?, service: IBinder?)
Log.e(TAG, "onServiceConnected: ")
try
mGetNameService = IGetNameInterface.Stub.asInterface(service)
var tv: TextView = findViewById(R.id.tv)
tv.text = mGetNameService?.info
catch (e: Exception)
Log.e(TAG, "exception: " + e.message)
override fun onServiceDisconnected(name: ComponentName?)
Log.e(TAG, "onServiceDisconnected: ")
bindService(intent, connection, Context.BIND_AUTO_CREATE)
companion object
private const val TAG = "MainActivity"
以上是关于kotlin简单实现AIDL进程间通信的主要内容,如果未能解决你的问题,请参考以下文章
Android Studio创建AIDL文件并实现进程间通讯