简体   繁体   English

Android:如何引用EditText视图

[英]Android: how to refer to EditText view

I have the following layout: 我有以下布局:

<TextView 
    android:id = "@+id/HRNoninTextBox"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"
    android:layout_below="@+id/exitbtn" 
    android:text="Heart Rate"
    android:textSize = "20sp"/>
<EditText 
    android:id="@+id/labelNoninHeartRate" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="00" 
    android:layout_alignParentRight="true">                         
</EditText>

from the code i refer to these views, form my activity, in this way: 从代码中我引用这些视图,以这种方式形成我的活动:

TextView tvHr= (TextView)findViewById(R.id.HRNoninTextBox);

EditText etHr = (EditText)findViewById(R.id.labelNoninHeartRate);

the first one does not produce any error, while the second statement produce the following error: 第一个不会产生任何错误,而第二个语句会产生以下错误:

 01-09 13:24:57.599: W/dalvikvm(28816): threadid=1: thread exiting with uncaught exception (group=0x4001e578)
01-09 13:24:57.619: E/AndroidRuntime(28816): FATAL EXCEPTION: main
01-09 13:24:57.619: E/AndroidRuntime(28816): java.lang.RuntimeException: Unable to start activity ComponentInfo{aid.assistant233/aid.assistant233.AidAssistant233Activity}: java.lang.ClassCastException: android.widget.TextView
01-09 13:24:57.619: E/AndroidRuntime(28816):    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1651)
01-09 13:24:57.619: E/AndroidRuntime(28816):    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1667)
01-09 13:24:57.619: E/AndroidRuntime(28816):    at android.app.ActivityThread.access$1500(ActivityThread.java:117)
01-09 13:24:57.619: E/AndroidRuntime(28816):    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:935)
01-09 13:24:57.619: E/AndroidRuntime(28816):    at android.os.Handler.dispatchMessage(Handler.java:99)
01-09 13:24:57.619: E/AndroidRuntime(28816):    at android.os.Looper.loop(Looper.java:130)
01-09 13:24:57.619: E/AndroidRuntime(28816):    at android.app.ActivityThread.main(ActivityThread.java:3691)
01-09 13:24:57.619: E/AndroidRuntime(28816):    at java.lang.reflect.Method.invokeNative(Native Method)
01-09 13:24:57.619: E/AndroidRuntime(28816):    at java.lang.reflect.Method.invoke(Method.java:507)
01-09 13:24:57.619: E/AndroidRuntime(28816):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:907)
01-09 13:24:57.619: E/AndroidRuntime(28816):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:665)
01-09 13:24:57.619: E/AndroidRuntime(28816):    at dalvik.system.NativeStart.main(Native Method)
01-09 13:24:57.619: E/AndroidRuntime(28816): Caused by: java.lang.ClassCastException: android.widget.TextView
01-09 13:24:57.619: E/AndroidRuntime(28816):    at aid.assistant233.AidAssistant233Activity.onCreate(AidAssistant233Activity.java:331)
01-09 13:24:57.619: E/AndroidRuntime(28816):    at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
01-09 13:24:57.619: E/AndroidRuntime(28816):    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1615)
01-09 13:24:57.619: E/AndroidRuntime(28816):    ... 11 more

Where may be the problem? 问题可能出在哪里?

Step1 : you can clean/build your project as everyone said . 步骤1:您可以按照每个人的指示清理/构建项目。 but If you are not getting your issue solve by clean/build then check my step2 for it. 但是如果您没有解决问题,请通过清理/构建解决,然后检查我的step2。

Step:2: I am not Sure But Can you please check your xml file once again? 步骤2:我不确定,但是能否请您再次检查xml文件?

this also could be happen if You've two elements with the same ID: 如果您有两个具有相同ID的元素,也会发生这种情况:

<TextView android:text="Hello Ahmedabad:" 
    android:id="@+id/txtahmedabad" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content">
</TextView>

<EditText android:layout_height="wrap_content"
    android:layout_width="fill_parent" 
    android:id="@+id/txtahmedabad" 
    android:text="">
</EditText>

if this is so then Give them different IDs - it could picking the first one (the TextView ) which obviously can't be cast to an EditText . 如果是这样,那么给他们提供不同的ID-它可以选择显然无法转换为EditText的第一个( TextView )。

Hope it will some how help you. 希望它会对您有所帮助。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM