-3

我在我的私人文件中收到“id 无法解析或不是字段”的错误View.OnClickListner onSave = new View.OnclickListner()

我收到错误“参数 onSave 的非法修饰符;只允许使用 final”。

文件和布局文件中的 IDactivity.java也相同。

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    Button save = (Button) findViewById(R.id.save);
    save.setOnClickListener(onSave);

    private View.OnClickListener onSave  = new View.OnClickListener() {
        public void onClick(View arg0) {
            // TODO Auto-generated method stub
            EditText name = (EditText)findViewById(R.id.name);
            EditText address = (EditText)findViewById(R.id.add);

布局代码

<?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
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:stretchColumns="1">

            <TableRow
                <TextView android:text="Name    :        " />
                <EditText android:id="@+id/name"></EditText>
             ></TableRow>

            <TableRow
                <TextView android:text="Address    :    "/>
                <EditText android:id="@+id/add"</EditText>
            ></TableRow>

            <Button
                android:id="@+id/button1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Save" />
        ></TableLayout>

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/hello" />
    </LinearLayout>
4

1 回答 1

2

您的按钮 id 是button1, not save, 所以这一行:

Button save =(Button) findViewById(R.id.save);

应该

Button save =(Button) findViewById(R.id.button1);

或者,如果您想更清楚,可以将其更改为:

android:id="@+id/save_button"

Button save =(Button) findViewById(R.id.save_button);
于 2012-07-10T09:48:31.270 回答