我正在尝试创建一个测试应用程序,当我按下 ImageButton 时,会出现一条日志消息。简单的。
我希望 ImageButton 视图与一个类一起工作。
我这样做了: 更新为正确的构造函数名称
public class MainActivity extends Activity {
MyButtonClass btnOk = null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
btnOk = new ButtonClass(this);
setContentView(R.layout.activity_main);
}
}
class MyButtonClass extends ImageButton{
public MyButtonClass(Context context) {
super(context);
findViewById(R.id.btButton);
OnClickListener oclBtnOk = new OnClickListener() {
@Override
public void onClick(View v) {
// change text of the TextView (tvOut)
Log.e("Log This:","Yay! I am working!");
}
};
setOnClickListener(oclBtnOk);
}
}
我的布局 xml 是:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<ImageButton
android:id="@+id/btButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher" />
</LinearLayout>
当我运行应用程序时,我在 Log cat 上没有收到任何错误,并且应用程序没有退出但是当我按下 ImageButton 时它没有做任何事情:/