因此,我剛開始Android開發,而且我已經遇到了困難。我一直在網上和本網站上查看很多,但似乎無法找到適合我的答案。到目前爲止,我在活動文件中記錄的內容如下。Android開發:id無法解析或不是字段
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>
你的按鈕都沒有'id'。因此錯誤。 –
Kazekage說得對。此外,由於您的所有按鈕都具有「android:onClick」屬性,您爲什麼需要找到特定的按鈕? –