我的应用程序继续崩溃,并显示“应用程序已停止工作”,我不了解logcat中的跟踪信息

时间:2018-11-12 04:50:05

标签: android-studio crash logcat

这是清单文件

with open('input.csv') as csv_file:
csv_reader = csv.reader(csv_file)
for row in csv_reader:

    host = row[0]
    host = host.strip() #  choo off whitespace
    destination = row[1]
    port = row[2]
    print("HOST")
    print(host)

csv_reader = csv.reader(csv_file, skipinitialspace=True)

该应用程序旨在查找附近的地方,但是每当我单击按钮搜索附近的地方时,它就会崩溃

这是logcat图片,但我不明白

enter image description here

0 个答案:

没有答案