在我的申请中,我想把顿与一个网站连接起来,就像用户在浏览器上点击这一纽顿网站时一样,但是,在点击 but子时,我会看到GisPostIme点0和GisPostIme点1。 我的守则:
val viewButton = findViewById<Button>(R.id.view_button)
viewButton.setOnClickListener {
val macAddress = scanResultBinding.deviceAddress.toString(){
val url = if (macAddress.isNotEmpty() && macAddress == "//macAddress") {
"MyWebsiteStore"
} else {
"MyWebsiteHome/"
}
val intent = Intent(Intent.ACTION_VIEW)
intent.data = Uri.parse(url)
startActivity(intent)
}