当我切换元素的位置时,为什么我的应用程序停止工作?

时间:2016-07-27 00:55:52

标签: android xml

enter image description here我正在编写一个简单的应用程序来设置"是"当我点击一个按钮(按钮位于TextView旁边)时,这样的TextView (其值为" no"默认情况下)。一切都很好..它完美无缺。

那么问题是什么?当我关闭程序然后在布局中切换它们的位置(按钮和TextView)时em>(通过拖动),然后令人惊讶的是应用程序不再起作用了。注意到当我再次切换它们的位置(就像第一次)时,它也能正常工作。

当我切换这两个元素的位置时,能否请任何人解释为什么我的应用程序停止工作?

使用XML代码:

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

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="TextView" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" />

</LinearLayout>

赢得了工作版

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

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="TextView" />

</LinearLayout>

Java代码:

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;


public class FirstAppActivity extends Activity {

    Button   btn;
    TextView txt;


    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        btn = (Button) findViewById(R.id.button1);
        txt = (TextView) findViewById(R.id.textView1);

        btn.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View arg0) {
                // TODO Auto-generated method stub
                txt.setText("yes");

            }
        });
    }
}

我在Android Studio上尝试相同的代码和操作。并获得下面的错误,其中显示 java.lang.ClassCastException:android.support.v7.widget.AppCompatTextView无法强制转换为android.widget.Button

FATAL EXCEPTION: main
Process: com.example.dysaniazzz.testdemo, PID: 30870
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.dysaniazzz.testdemo/com.example.dysaniazzz.testdemo.MainActivity}: java.lang.ClassCastException: android.support.v7.widget.AppCompatTextView cannot be cast to android.widget.Button
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2215)
    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2264)
    at android.app.ActivityThread.access$800(ActivityThread.java:136)
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1219)
    at android.os.Handler.dispatchMessage(Handler.java:102)
    at android.os.Looper.loop(Looper.java:136)
    at android.app.ActivityThread.main(ActivityThread.java:5032)
    at java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:515)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:785)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:601)
    at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.ClassCastException: android.support.v7.widget.AppCompatTextView cannot be cast to android.widget.Button
    at com.example.dysaniazzz.testdemo.MainActivity.onCreate(MainActivity.java:18)
    at android.app.Activity.performCreate(Activity.java:5310)
    at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1094)
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2179)
    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2264)?
    at android.app.ActivityThread.access$800(ActivityThread.java:136)?
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1219)?
    at android.os.Handler.dispatchMessage(Handler.java:102)?
    at android.os.Looper.loop(Looper.java:136)?
    at android.app.ActivityThread.main(ActivityThread.java:5032)?
    at java.lang.reflect.Method.invokeNative(Native Method)?
    at java.lang.reflect.Method.invoke(Method.java:515)?
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:785)?
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:601)?
    at dalvik.system.NativeStart.main(Native Method)?

2 个答案:

答案 0 :(得分:3)

当您在不重新生成R.java的情况下切换订单时,会出现误导性错误,因为您的视图ID尚未重新分配。

你必须清洁&amp;重建项目。我相信Android Studio / Gradle会为每个构建重新生成资源,Eclipse主要只是编译Java代码。

答案 1 :(得分:0)

我基本上只是在发生这种情况时创建一个新的xml文件。有时重建并不像预期的那样有效。因此,尝试使用所需的布局创建一个新的xml文件,然后进行清理和重建。