ジオコーダーがアドレスを出力しないというトラブルに見舞われましたが、その理由はわかりません。
public void button_address (View v){
//Create Geocoder
gc = new Geocoder(this, Locale.getDefault());
//The string pulled from the app to be used in the Geocoder
String loc = address.getText().toString();
//The list the Geocoder will fill
List<Address> add;
//Check to make sure there is a value in loc
Log.d(TAG, loc);
Log.d(TAG, "Before try/catch");
try {
//Request Gecoder return string loc with an address for add
add = gc.getFromLocationName(loc, 1);
add.isEmpty();
//Check to see if add is empty
if(add.isEmpty()){ Log.d(TAG, "ADD is empty"); }
double lat = add.get(0).getLatitude();
double lon = add.get(0).getLongitude();
Log.d(TAG, "lat:" + lat + ", long:" + lon);
} catch (IOException e) {
Toast toast = Toast.makeText(this, "Please Try Entering Another Address",
Toast.LENGTH_SHORT);
toast.show();
e.printStackTrace();
}
ここに私のlogcatがあります
05-24 19:33:21.309: D/MainActivity(32508): 3111 world Dr, lake Buena vista, fl 32830
05-24 19:33:21.309: D/MainActivity(32508): Before try/catch
05-24 19:33:21.329: D/MainActivity(32508): ADD is empty
05-24 19:33:21.329: D/AndroidRuntime(32508): Shutting down VM
05-24 19:33:21.329: W/dalvikvm(32508): threadid=1: thread exiting with uncaught exception (group=0x40a13300)
05-24 19:33:21.418: E/AndroidRuntime(32508): FATAL EXCEPTION: main
05-24 19:33:21.418: E/AndroidRuntime(32508): java.lang.IllegalStateException: Could not execute method of the activity
05-24 19:33:21.418: E/AndroidRuntime(32508): at android.view.View$1.onClick(View.java:3591)
05-24 19:33:21.418: E/AndroidRuntime(32508): at android.view.View.performClick(View.java:4084)
05-24 19:33:21.418: E/AndroidRuntime(32508): at android.view.View$PerformClick.run(View.java:16966)
05-24 19:33:21.418: E/AndroidRuntime(32508): at android.os.Handler.handleCallback(Handler.java:615)
05-24 19:33:21.418: E/AndroidRuntime(32508): at android.os.Handler.dispatchMessage(Handler.java:92)
05-24 19:33:21.418: E/AndroidRuntime(32508): at android.os.Looper.loop(Looper.java:137)
05-24 19:33:21.418: E/AndroidRuntime(32508): at android.app.ActivityThread.main(ActivityThread.java:4745)
05-24 19:33:21.418: E/AndroidRuntime(32508): at java.lang.reflect.Method.invokeNative(Native Method)
05-24 19:33:21.418: E/AndroidRuntime(32508): at java.lang.reflect.Method.invoke(Method.java:511)
05-24 19:33:21.418: E/AndroidRuntime(32508): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
05-24 19:33:21.418: E/AndroidRuntime(32508): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
05-24 19:33:21.418: E/AndroidRuntime(32508): at dalvik.system.NativeStart.main(Native Method)
05-24 19:33:21.418: E/AndroidRuntime(32508): Caused by: java.lang.reflect.InvocationTargetException
05-24 19:33:21.418: E/AndroidRuntime(32508): at java.lang.reflect.Method.invokeNative(Native Method)
05-24 19:33:21.418: E/AndroidRuntime(32508): at java.lang.reflect.Method.invoke(Method.java:511)
05-24 19:33:21.418: E/AndroidRuntime(32508): at android.view.View$1.onClick(View.java:3586)
05-24 19:33:21.418: E/AndroidRuntime(32508): ... 11 more
05-24 19:33:21.418: E/AndroidRuntime(32508): Caused by: java.lang.IndexOutOfBoundsException: Invalid index 0, size is 0
05-24 19:33:21.418: E/AndroidRuntime(32508): at java.util.ArrayList.throwIndexOutOfBoundsException(ArrayList.java:251)
05-24 19:33:21.418: E/AndroidRuntime(32508): at java.util.ArrayList.get(ArrayList.java:304)
05-24 19:33:21.418: E/AndroidRuntime(32508): ... 14 more
05-24 19:33:23.839: I/Process(32508): Sending signal. PID: 32508 SIG: 9
したがって、add が空を返し、次に logcat で取得するという事実に基づいて: IndexOutOfBoundsException: Invalid index 0, size is 0 どういうわけか Geocoder が失敗していると確信しています。マニフェストにインターネット アクセス許可があり、インターネットが Web ブラウザーを介してエミュレーターで動作していることを確認しました。
うまくいけば、私が見逃した、または推奨事項がある単純な問題を他の誰かが見ることができます。ご協力いただきありがとうございます。