在发布此问题之前,我已查看java.lang.ClassCastException: android.widget.LinearLayout cannot be cast to android.widget.TextView和Android java.lang.ClassCastException: android.widget.RelativeLayout cannot be cast to android.widget.EditText,但我无法从这两个问题中找到任何帮助。
我得到了这个例外 -
09-14 11:57:57.813: E/AndroidRuntime(8135): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.firstpage/com.example.firstpage.CreateGroup}: java.lang.ClassCastException: android.widget.LinearLayout cannot be cast to android.widget.EditText
09-14 11:57:57.813: E/AndroidRuntime(8135): at com.example.firstpage.CreateGroup.onCreate(CreateGroup.java:43)
单击“09-14 11:57:57.813:E / AndroidRuntime(8135):com.example.firstpage.CreateGroup.onCreate(CreateGroup.java:43)”时显示的代码部分是 -
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_create_group);
ed1 = (EditText) findViewById(R.id.editTextcg1); // CreateGroup.java:43
特定部分的XML文件是 -
<LinearLayout
android:id="@+id/layout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/DimGray"
android:gravity="top|center"
android:orientation="horizontal"
android:paddingBottom="5dp"
android:paddingLeft="25dp"
android:paddingRight="25dp"
android:paddingTop="5dp" >
<EditText
android:id="@+id/editTextcg1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginRight="5dp"
android:layout_weight="1"
android:ems="10"
android:hint="Group Name" >
<requestFocus />
</EditText>
为什么我得到这个例外以及如何纠正?
更新:
正如Falmarri和Ted Hopp所说,我清理了我的项目,现在工作正常。谢谢你的帮助。