我正在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,这可能不是很好。具体来说,performLaunchActivity()
在ActivityThread.java中抛出了“无法启动活动”异常。不知道这是怎么回事。
我已经阅读了在StackOverview搜索中弹出的其他findViewById()
线程,并且很多这些问题似乎围绕findViewById()
返回的项目与例如本地变量Button x = findViewById(R.id.TextFieldHere);
不匹配。但这似乎并非如此......除非我不明白RelativeLayout应该如何在这里工作......?任何建议/见解表示赞赏,谢谢。