gpt4 book ai didi

安卓开发 : id cannot be resolved or is not a field

转载 作者:行者123 更新时间:2023-11-29 15:27:10 24 4
gpt4 key购买 nike

所以我才刚开始做Android开发,就已经碰壁了。我一直在网上和这个网站上四处寻找,但似乎找不到适合我的答案。到目前为止,我在我的 Activity 文件中所写的内容如下。

import android.app.Activity;
import android.os.Bundle;
import android.widget.Button;
public class CommanderActivity extends Activity
{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final Button button = (Button) findViewById( R.id.button_id );
}
}

错误出现在代码的最后一行 ( R.id.button_id ) 中。我的 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" >
<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TableRow>
<Button
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:text="@string/Parameters"
android:onClick="openParameters" />

<Button
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:text="@string/Waves"
android:onClick="openWaves" />
</TableRow>
<TableRow>
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/MoreParameters"
android:onClick="openMoreParameters" />
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/Status"
android:onClick="openStatus" />
</TableRow>
<TableRow>
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/Operations"
android:onClick="openOperations" />

<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/Monitor"
android:onClick="openMonitor" />
</TableRow>
<TableRow>
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/CEBus"
android:onClick="openCEBus" />
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/Advanced"
android:onClick="openAdvanced" />
</TableRow>
</TableLayout>
</LinearLayout>

最佳答案

只需将以下行添加到您的按钮 android:id="@+id/my_button"
然后在您的 Activity 中,您可以使用方法 findViewById(R.id.my_button);

希望这对您有所帮助。我绝对推荐你阅读这篇文章 -> http://developer.android.com/guide/topics/ui/declaring-layout.html

关于安卓开发 : id cannot be resolved or is not a field,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10885872/

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