我正在做最簡單的onClick模型,無法啓動onClick方法。我知道這很簡單,而且我是Android新手。任何幫助表示讚賞。在Android上未調用onClick方法
package com.bordeloniphone.timeentry;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;
public class TimeEntryActivity extends Activity implements OnClickListener{
/** Called when the activity is first created. */
Button okButton;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
okButton = (Button) findViewById(R.id.btnOK);
okButton.setText(":)");
okButton.setOnClickListener(this);
//setContentView(okButton);
}
public void onClick(View v) {
Log.d("TEST", "TEST");
Toast.makeText(this, "TEST", Toast.LENGTH_SHORT).show();
}
}
下面是main.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" >
<Button
android:id="@+id/btnOK"
android:layout_width="80dp"
android:layout_height="wrap_content"
android:text="OK" />
</LinearLayout>
我將您的確切代碼複製/粘貼到一個新項目中,並且工作正常。我得到了Toast和LogCat條目。是什麼讓你覺得它不起作用? – kabuko
你的代碼對我來說工作正常..檢查清理完畢並構建你的項目.. – deepa
是的,這段代碼適合我。也許你可以嘗試:Toast.makeText(TimeEntryActivity.this,「TEST」,Toast.LENGTH_SHORT).show(); – R4j