为复合视图的组件定义回调

时间:2015-04-27 13:18:31

标签: android callback

我的Android应用程序中有一个复合视图,由Button和EditText组成。

XML文件:

[A:L=months of year] by several rows down [1:5=consecutive years].

和班级:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <Button 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/myButton"
        android:text="CLEAR"
        />
    <EditText 
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/myEditText"

        android:hint="@string/Hint"        
        />

</LinearLayout>

问题是没有错误但是不考虑Button回调(当我运行应用程序时,该按钮应该清除EditText的文本但没有任何反应)。如果我在主类中定义回调,一切都OK。我没有不知所措,有什么不对。谁有人请帮忙?

1 个答案:

答案 0 :(得分:0)

尝试使用View.onclickListener代替Button.onClickListener

myButton.setOnClickListener(new View.onClickListener() {
            @Override
            public void onClick(View v) {
                myEditText.setText("");             
            }
        });