android:onClick xml没有执行

时间:2013-06-20 16:34:14

标签: android xml onclick label onclicklistener

我正在尝试使用一个布局和两个按钮来创建一个简单的应用程序,这些按钮将更改布局文本。但我找不到解决方案为什么android:onClick不执行。在尝试使用OnClickListener后,它不能正常工作,但正如他们在这里所做的那样:How exactly does the android:onClick XML attribute differ from setOnClickListener?

我已阅读并遵循ANdroid SDK网站中的教程:http://developer.android.com/reference/android/widget/Button.html

这是我的XML代码:

<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="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >

<TextView
    android:id="@+id/maintext"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="0.00"
    android:text="@string/hello_world" />

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

<Button
    android:id="@+id/button2"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Button2"  />

这是我的Java代码:

public class MainActivity extends Activity implements OnClickListener{

    TextView label1;
int stage;
Button button1, button2;


protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    label1 = new TextView(this);
    TextView label1 = (TextView) findViewById(R.id.maintext);

    stage = 1;
    label1.setText("hello " + stage);
    Log.d("HiThereActivity", "THIS IS DEBUG OUTPUT TO LOGCAT"); //working

    button1 = new Button(this);
    button2 = new Button(this);

    button1.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            button1_click(v);
            Log.d("button1 working", "THIS IS DEBUG OUTPUT TO LOGCAT"); //not appearing
        }
    });
    button2.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            button2_click(v);
            Log.d("button2 working", "THIS IS DEBUG OUTPUT TO LOGCAT"); //not appearing
        }
    });
}

public void button1_click(View v) {

    stage = 2;
    label1.setText("hello " + stage);
    Log.d("b1click", "THIS IS DEBUG OUTPUT TO LOGCAT"); //not appearing

}

public void button2_click(View v) {

    stage = 3;
    label1.setText("hello " + stage);
    Log.d("b2click", "THIS IS DEBUG OUTPUT TO LOGCAT"); //not appearing
}

@Override
public void onClick(View v) {
    Log.d("wrong method", "THIS IS DEBUG OUTPUT TO LOGCAT"); // not appearing
}}

所以我得到的唯一Logcat消息是OnCreate方法中的消息。阶段变量始终保持为1,并且在单击按钮时不会更改。然而,按钮会为点击设置动画,因此它必须是OnClick或标签本身不起作用。

模拟器运行的图像:http://i.stack.imgur.com/ioUoD.png

提前致谢!

3 个答案:

答案 0 :(得分:2)

这是因为你点击的按钮,实际上并不是指那些在XML布局文件中定义的按钮。 有了这个声明:

button1 = new Button(this);

您创建了一个新按钮,但不要引用XML布局中声明的按钮。

正确的方法是获取对XML布局中声明的按钮的引用:

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

答案 1 :(得分:2)

不要使用

Button button1 = new Button(this);

因为它创建了一个新按钮,而不是将它绑定到您添加到XML的按钮。相反,使用

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

同样适用于button2

答案 2 :(得分:1)

问题在这里

    button1 = new Button(this);
    button2 = new Button(this);

而不是使用现有按钮,而是创建新按钮。使用像

    button1 = findViewById(R.id.button1);
    button2 = findViewById(R.id.button2);

其他信息

这里不需要实现onClickListener。你已经分别设置了听众。所以这里不需要

更多信息

您似乎很擅长使用onClickListener。这里有不同的使用方法。

  1. 像你一样在setOnClickLIstener方法中使用annonymouse内部类

    button1.setOnClickListener(new View.OnClickListener(){

    @Override
    public void onClick(View v) {
        button1_click(v);
        Log.d("button1 working", "THIS IS DEBUG OUTPUT TO LOGCAT"); //not appearing
    }
    

    });

  2. 实施OnClickListener并覆盖onClick方法。但在这种情况下,不要忘记将听众设置为

    button.setOncliClistener(this);
    
  3. 或者如果你使用另一个类来监听使用,如

         button.setOnclickListener(thatclass);
    
    1. 我最喜欢的方式是。在xml布局中使用android:onClick方法并声明方法如下

      android:onClick="onClick"

    2. 在班级

          public void onClick(View v){
              // do your tasks
          }