gpt4 book ai didi

java - 为什么Android程序无法在我的手机上运行(它可以在虚拟手机上正常运行)

转载 作者:行者123 更新时间:2023-12-02 13:32:51 29 4
gpt4 key购买 nike

 try {
val adresstext= findViewById(R.id.editText3)as TextView

fusedLocationClient = LocationServices.getFusedLocationProviderClient(this)
fusedLocationClient.lastLocation.addOnSuccessListener {
location -> location

var locationx=location.longitude
var locationy=location.latitude

val name = findViewById(R.id.textView) as TextView
name.text=(locationx.toString()+" "+locationy.toString())
var geocoder: Geocoder
var listadress :List<Address>


geocoder = Geocoder(this, Locale.getDefault());
listadress =geocoder.getFromLocation(locationy,locationx,1)
var adress=listadress[0].getAddressLine(0)
var city =listadress[0].locality.get(0)
var state = listadress[0].adminArea.get(0)
var country = listadress[0].getCountryName()
var postalCode = listadress[0].getPostalCode()
var knownName = listadress[0].getFeatureName()
adresstext.text=(adress+city+state+country+postalCode+knownName)


}

}
catch (e: java.lang.Exception)
{
Toast.makeText(this,e.toString(),Toast.LENGTH_LONG).show()
}

那是我的代码
当我在模拟器中运行它时,它运行正常,没有错误
但是当我用手机运行它(将其连接到我的电脑)时,该按钮不起作用,它说:
V/AudioManager: querySoundEffectsEnabled...
D/AwareBitmapCacher: handleInit switch not opened pid=19134

在此之前,当程序在我的手机中打开时,运行秒是这样的:
E/: APS:IFLoad:importExternalFunctions, search function createNewHwApsUtils failed, dlsym err:undefined symbol: createNewHwApsUtils

E/AwareLog: AtomicFileUtils: readFileLines file not exist: android.util.AtomicFile@6c8edde
E/AwareLog: AtomicFileUtils: readFileLines file not exist: android.util.AtomicFile@3bb1bbf

这个3是红色的我该如何解决这个问题?

最佳答案

您应该转到电话设置并找到您的应用程序。检查位置服务是否被允许。如果不允许。接受。

关于java - 为什么Android程序无法在我的手机上运行(它可以在虚拟手机上正常运行),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60319177/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com