一.服务端
package com.example.aidlservice31;
// Declare any non-default types here with import statements
interface IMyAidlServer {
// 接收一个字符串参数
void setData(String value);
// 返回一个字符串
String getData();
}
class MyService : Service() {
private val mBinder by lazy { MyBinder() }
override fun onBind(intent: Intent): IBinder {
return mBinder
}
inner class MyBinder : IMyAidlServer.Stub() {
private var mData: String = "李小龙"
override fun setData(value: String) {
Log.e("yjj", "客户端发来的数据== $value")
mData = value
}
override fun getData() = mData+"返回的数据"
}
}
<service
android:name=".MyService"
//远程可访问
android:exported="true"
//开启远端进程
android:process=":remote">
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
//客户端通过action绑定MyService
<action android:name="com.example.aidlservice31.MyService" />
</intent-filter>
</service>
二、客户端
1.复制服务端aidl文件夹,啥也别改,然后build下,自动生成java文件。
2.绑定服务,传输数据
class MainActivity : AppCompatActivity() {
private var mServer: IMyAidlServer? = null
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
initView()
}
private var mNumber = 0
private fun initView() {
val tvGetDataValue: TextView = findViewById(R.id.tvGetDataValue)
//绑定服务器
findViewById<TextView>(R.id.tvBindService).setOnClickListener {
setConnection()
}
//传递数据给服务端
findViewById<TextView>(R.id.tvSetData).setOnClickListener {
mNumber++
mServer?.data = mNumber.toString()
Log.e("yjj", "setData == " + mServer?.data)
}
//获取服务端数据
findViewById<TextView>(R.id.tvGetData).setOnClickListener {
Log.e("yjj", "getData == " + mServer?.data)
mServer?.data.let {
tvGetDataValue.text = it
}
Toast.makeText(this,tvGetDataValue.text,Toast.LENGTH_LONG).show()
}
}
private val mMyServiceConnection = object : ServiceConnection {
override fun onServiceConnected(name: ComponentName?, remoteService: IBinder?) {
Log.e("yjj", "绑定远程服务成功!")
mServer = IMyAidlServer.Stub.asInterface(remoteService)
}
override fun onServiceDisconnected(name: ComponentName?) {
mServer = null
}
}
private fun setConnection() {
try {
val intent = Intent()
// AIDLServer 项目的包名(applicationId)
// AIDLServer 项目中注册的服务的全路径
intent.component =
ComponentName("com.example.aidlservice31", "com.example.aidlservice31.MyService")
intent.flags = Intent.FLAG_ACTIVITY_NEW_TASK
var issuccess = bindService(intent, mMyServiceConnection, Context.BIND_AUTO_CREATE)
Log.e("yjj", "开始绑定服务器issuccess=$issuccess")
} catch (e: SecurityException) {
e.printStackTrace()
}
}
override fun onDestroy() {
super.onDestroy()
unbindService(mMyServiceConnection)
}
}
好像有些手机是不行的,比如华为荣耀v30。不行的话,换个手机试试吧。
原文地址:https://blog.csdn.net/yangjunjin/article/details/134631494
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_470.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。