我在我的私人文件中收到“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>