我正在通过Youtube教程创建“地图搜索”应用程序,但是我的应用程序崩溃了

时间:2019-06-15 14:17:33

标签: java android google-maps crash

我正在尝试通过Youtube教程创建一个应用,但是只要我在SearchView中提交位置,我的应用就会崩溃。

我尝试更改导入android.support.v7.widget.SearchView;从导入android.widget.SearchView;

Promise.all([promise 1,promise 2,promise 3]).then(data=>{
     console.log(data);
});
After executing all these 
data[0] contains promise 1 result, 
data[1] contains promise 2 result,
data[2] contains promise 3 result

2 个答案:

答案 0 :(得分:0)

更改

if (location != null || location != "")

收件人

if (location != null || !location.equals(""))

我们无法像以前那样比较字符串。

答案 1 :(得分:0)

将堆栈跟踪添加到问题中,以便于查找问题,但查看代码是否 geocoder.getFromLocationName(位置1)为空,然后查看地址地址= addressList。得到(0)将导致NullPointerException