0

我很确定这里有很多类似的问题,但没有一个能帮助我解决我遇到的这个问题。

假设我有一个主菜单、一个仪表板布局和 4 个按钮。A B C D

当我按 A 时,我正在开始新的活动 A。在这个活动 A 中,有一个链接我正在从中获取 json 项目。它在正常的 URL 下工作正常,但是当我试图从编辑文本/文本视图中获取价值时,它会崩溃。

 String url = "http://webservice.xxx.com/webservice/getLocationList.php?lat="+ latValue +"&lng="+ lngValue +"";

latValuelngValue来自我的R.id.test中的编辑框,这里是 EditText 的 XML 文件

<?xml version="1.0" encoding="utf-8"?>
  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/test"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical" >

<EditText
    android:id="@+id/latValue"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:inputType="numberDecimal"
    android:text="54.9933628" >

    <requestFocus />
</EditText>

<EditText
    android:id="@+id/lngValue"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="9.8595655"
    android:inputType="numberDecimal" /> 
    </LinearLayout>

在这里,我想从中获取价值并将其放入链接中。

    @Override
    public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);


                  EditText lat_source = (EditText)findViewById(R.id.latValue);
here crash -->    Double sourceLat = Double.parseDouble(lat_source.getText().toString());


    EditText lng_source = (EditText)findViewById(R.id.lngValue);
    Double sourceLng = Double.parseDouble(lng_source.getText().toString());


    String url = "http://webservice.xxx.com/webservice/getLocationList.php?lat="+ sourceLat +"&lng="+ sourceLng +"";

    Log.d(TAG, "My URL is = " + url); 

日志

    02-15 11:37:41.826: E/AndroidRuntime(14267):    at android.os.Looper.loop(Looper.java:137)
    02-15 11:37:41.826: E/AndroidRuntime(14267):    at android.app.ActivityThread.main(ActivityThread.java:4898)
    02-15 11:37:41.826: E/AndroidRuntime(14267):    at java.lang.reflect.Method.invokeNative(Native Method)
    02-15 11:37:41.826: E/AndroidRuntime(14267):    at java.lang.reflect.Method.invoke(Method.java:511)
    02-15 11:37:41.826: E/AndroidRuntime(14267):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1006)
    02-15 11:37:41.826: E/AndroidRuntime(14267):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:773)
    02-15 11:37:41.826: E/AndroidRuntime(14267):    at dalvik.system.NativeStart.main(Native Method)
    02-15 11:37:41.826: E/AndroidRuntime(14267): Caused by: java.lang.NullPointerException
    02-15 11:37:41.826: E/AndroidRuntime(14267):    at com.androidhive.jsonparsing.LocationBased.onCreate(LocationBased.java:69)
    02-15 11:37:41.826: E/AndroidRuntime(14267):    at android.app.Activity.performCreate(Activity.java:5206)
    02-15 11:37:41.826: E/AndroidRuntime(14267):    at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1083)
    02-15 11:37:41.826: E/AndroidRuntime(14267):    at android.app.ActivityThread.performLaunchActivity
4

1 回答 1

1
LayoutInflater inflater  = LayoutInflater.from(this);
LinearLayout testLayout = (LinearLayout)inflater.inflate(R.layout.test, null)
EditText lat_source = (EditText)testLayout.findViewById(R.id.latValue);
Double sourceLat = Double.parseDouble(lat_source.getText().toString());

如前所述,为了获得EditText对象 through findViewById,您的视图应该添加到 View Hierarchy 中setContentView,或者您可以使用充气器并使用充气器返回的视图对象来获取EditText

于 2013-02-15T11:13:33.603 回答