gpt4 book ai didi

java - Android 用户界面编码错误

转载 作者:行者123 更新时间:2023-12-02 04:20:11 26 4
gpt4 key购买 nike

所以,我在通过编码添加按钮时遇到了问题。这是当我进入应该执行这些操作的 Activity 时从 logcat 收到的错误消息:

09-30 09:36:51.591: E/AndroidRuntime(14956): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.gameproj/com.example.gameproj.MapMain}: java.lang.NullPointerException

这是似乎相关的代码:

        map = new Button[loadedMap.getX()][loadedMap.getY()];
LinearLayout layout = (LinearLayout) findViewById(R.id.mapything);
LinearLayout.LayoutParams coord;
for (int i = 0; i < map.length; i++){
for (int j = 0; j < map[i].length; j++){
map[i][j] = new Button(this);
coord = new LayoutParams(16*i, 75+16*j);
map[i][j].setLayoutParams(coord);
map[i][j].setGravity(Gravity.CENTER_HORIZONTAL);
layout.addView(map[i][j]);
}
}

从我可以调试的情况来看,错误出现在layout.addView(map[i][j])行周围,但我一直无法找到如何让它工作。

编辑:我不知道还要放什么,但我会继续放置 xml 文件,看看它是否会使内容更清晰

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/mapything"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="${relativePackage}.${activityClass}" >

<Button
android:id="@+id/button1"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:onClick="toCharacter"
android:text="Back" />

<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/button1"
android:layout_alignBottom="@+id/button1"
android:layout_centerHorizontal="true"
android:text="Map"
android:textSize="18sp" />

</RelativeLayout>

最佳答案

我认为这一行有问题 for (int j = 0; j < map[i].length; i++)尝试将其替换为 for (int j = 0; j < map[i].length; j++) .

关于java - Android 用户界面编码错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32868453/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com