为什么findViewById()会崩溃relativeLayout init命令?

时间:2017-12-03 06:07:30

标签: java android android-layout android-relativelayout

我正在Android Studio 3.0中编写一个Chess应用程序,当用户点击棋盘布局上的按钮btnPopUpWindow时,我希望弹出一个PopupWindow。这里'棋盘布局XML:

activity_chessboard.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="me.androidchess.MainActivity"
    android:id="@+id/chessboardlayout">

    <Button
        android:id="@+id/popUpButton"
        android:layout_width="172dp"
        android:layout_height="wrap_content"
        android:layout_marginBottom="8dp"
        android:layout_marginEnd="8dp"
        android:layout_marginTop="8dp"
        android:text="Pop Up Menu"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:layout_marginRight="8dp" />

</android.support.constraint.ConstraintLayout>

上面的XML布局由 Chessboard.java 加载。显然,Chessboard将是弹出窗口的父级,这就是为什么我想使用RelativeLayout引用来弹出窗口来查看Chessboard。

Chessboard.java

public class Chessboard extends Activity {

Button btnPopUpWindow;
RelativeLayout relativeLayout;

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

    btnPopUpWindow = findViewById(R.id.popUpButton);                       // This works
    relativeLayout = (RelativeLayout)findViewById(R.id.chessboardlayout);  // <--- CRASHES HERE!!!
    btnPopUpWindow.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {

            // https://www.youtube.com/watch?v=wxqgtEewdfo

            gameTextArea.setText("Pop up Menu appears...");

        }
    });
}

relativeLayout = (RelativeLayout)findViewById(R.id.chessboardlayout);行会导致应用崩溃。

我假设findViewById()无法找到ID chessboardlayout,但我无法弄清楚原因。我在Android Studio中找不到R.id目录,但是当我输入命令时,我注意到chessboardlayout出现在下拉选项中。另外,当我浏览调试器时,我会看到Id。所以我认为Id已经正确归档。

但是当我关注调试器时,findViewById()调用返回null,这不是好事。具体而言,&#34; 无法启动活动&#34; performLaunchActivity() ActivityThread.java中抛出异常不知道这是怎么回事。

我已经阅读了StackOverview搜索中弹出的其他findViewById()个帖子,其中很多问题似乎都围绕findViewById()返回的与本地变量不匹配的项目{ {1}}例如。但这似乎并非如此......除非我不明白RelativeLayout应该如何在这里工作......?任何建议/见解表示赞赏,谢谢。

1 个答案:

答案 0 :(得分:3)

您的R.id.chessboardlayoutandroid.support.constraint.ConstraintLayout,因此您无法将其投放到RelativeLayout,否则会导致ClassCastException

因此,如果您仍想将RelativeLayout用作布局的根目录,请将activity_chessboard.xml更改为:

<强> activity_chessboard.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="me.androidchess.MainActivity"
    android:id="@+id/chessboardlayout">

    <Button
        android:id="@+id/popUpButton"
        android:layout_width="172dp"
        android:layout_height="wrap_content"
        android:layout_marginBottom="8dp"
        android:layout_marginEnd="8dp"
        android:layout_marginTop="8dp"
        android:text="Pop Up Menu"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:layout_marginRight="8dp" />
</RelativeLayout>

然后在您的活动中正常使用findViewById()

setContentView(R.layout.activity_chessboard);
btnPopUpWindow = findViewById(R.id.popUpButton);                      
relativeLayout = (RelativeLayout)findViewById(R.id.chessboardlayout);