在模拟器上执行应用程序时,Android运行时错误

时间:2018-08-22 15:12:15

标签: java android android-layout android-studio

我刚刚开始学习Android开发。

运行我的android应用程序时出现以下错误代码。

E/AndroidRuntime: FATAL EXCEPTION: main
                  Process: com.example.karan.newapp, PID: 3385
                  java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.karan.newapp/com.example.karan.newapp.mainActivity}: java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
                      at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2325)
                      at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2387)
                      at android.app.ActivityThread.access$800(ActivityThread.java:151)
                      at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1303)
                      at android.os.Handler.dispatchMessage(Handler.java:102)
                      at android.os.Looper.loop(Looper.java:135)
                      at android.app.ActivityThread.main(ActivityThread.java:5254)
                      at java.lang.reflect.Method.invoke(Native Method)
                      at java.lang.reflect.Method.invoke(Method.java:372)
                      at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
                      at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)
                   Caused by: java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
                      at android.view.ViewGroup.addViewInner(ViewGroup.java:3936)
                      at android.view.ViewGroup.addView(ViewGroup.java:3786)
                      at android.view.ViewGroup.addView(ViewGroup.java:3758)
                      at com.example.karan.newapp.mainActivity.onCreate(mainActivity.java:26)
                      at android.app.Activity.performCreate(Activity.java:5990)
                      at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1106)
                      at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2278)
                      at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2387) 
                      at android.app.ActivityThread.access$800(ActivityThread.java:151) 
                      at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1303) 
                      at android.os.Handler.dispatchMessage(Handler.java:102) 
                      at android.os.Looper.loop(Looper.java:135) 
                      at android.app.ActivityThread.main(ActivityThread.java:5254) 
                      at java.lang.reflect.Method.invoke(Native Method) 
                      at java.lang.reflect.Method.invoke(Method.java:372) 
                      at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903) 
                      at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698) 


这是我的代码示例。 请在下面帮助我。

package com.example.karan.newapp;

import android.app.Activity;
import android.os.Bundle;
import android.widget.RelativeLayout;
import android.widget.Button;
import android.graphics.Color;
public class mainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        RelativeLayout myLayout = new RelativeLayout(this);
        Button myButton = new Button(this);
        myLayout.addView(myButton);
        myLayout.setBackgroundColor(Color.BLUE);
        myButton.setBackgroundColor(Color.YELLOW);
        myButton.setText(R.string.myButton);
        RelativeLayout.LayoutParams buttonDetails =
               new  RelativeLayout.LayoutParams(
                    RelativeLayout.LayoutParams.WRAP_CONTENT,
                    RelativeLayout.LayoutParams.WRAP_CONTENT
                );
        buttonDetails.addRule(RelativeLayout.CENTER_HORIZONTAL);
        buttonDetails.addRule(RelativeLayout.CENTER_VERTICAL);
        myLayout.addView(myButton,buttonDetails);
        setContentView(myLayout);
    }
}
................................................... ................................................... ................................................... ................................................... ................................................... ................................................... ................................................... ................................................... ................................................... .....................

3 个答案:

答案 0 :(得分:2)

我认为您的代码仅是一项基本活动就有些复杂 我会指出一些错误,但是最好是在使用android studio之前先学习一些基础知识。

  1. 您的Java类名以小写字母mainActivity开头,最好不要使用它,请始终在类名开头使用大写字母,例如:MainActivity

  2. 要使用setContentView();将布局文件链接到java类,请尝试使用布局的ID进行调用,这是最佳实践。例如:setContentView(R.layout.activity_main);

  3. ,因为您的错误指示java.lang.RuntimeException: Unable to start activity,所以与您的活动文件有关的问题。我认为您是在setContentView();之前声明并使用按钮,我们可以在setContentView();之后声明并使用Java类中的按钮和其他代码,以便它将正确显示活动。

    < / li>

例如:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

        Button myButton = new Button(this);
        ....
        ....
          }
  1. 为了更改布局,按钮和其他属性(例如从字符串中指定按钮名称)的背景颜色,最好在其相应的XML布局资源文件中进行更改

您使用过的那个:

    myLayout.setBackgroundColor(Color.BLUE);
    myButton.setBackgroundColor(Color.YELLOW);
    myButton.setText(R.string.myButton);
    RelativeLayout.LayoutParams buttonDetails =
           new  RelativeLayout.LayoutParams(
                RelativeLayout.LayoutParams.WRAP_CONTENT,
                RelativeLayout.LayoutParams.WRAP_CONTENT
            );

最简单,更正确的方法是:

    <Button
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="@string/stringname"
    android:textStyle="bold"
    android:background="@color/colorAccent"
    android:textColor="@color/colorPrimary"
    />

答案 1 :(得分:0)

Karan,看来您的问题可能就在线上

   myLayout.addView(myButton,buttonDetails);

在此之前,您已经将按钮添加到布局中。

   myLayout.addView(myButton);

很高兴知道如何以编程方式创建布局,但是我强烈建议您使用XML代替,并且仅在需要在运行时进行更改时才使用代码进行处理。另外,当您使用XML时,您将获得设计编辑器,您可以在其中直观地看到其外观。

答案 2 :(得分:0)

只需从我的代码中删除一行

myLayout.addView(myButton);

效果很好

实际上存在问题,因为要求同一按钮对象在屏幕上显示两次。