54

OK I'm new to android dev's and Java, so I'm having problems with on click method here's my code. I know I've gotta be close, thanks in advance. All I want my button to do is, when its clicked on the phone to switch the layout view from main.xml to xx.xml

package my.project;

import android.app.Activity;
import android.os.Bundle;

import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class ExperiencerlActivity extends Activity {
    /** Called when the activ`enter code here`ity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);      
        Button button = (Button) findViewById(R.id.button1);

        button.setOnClickListener(new OnClickListener() {
            public void onClick(View v) {
                // TODO Auto-generated method stub
            }
        });
    }
}

Here is my button code

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_above="@+id/linearLayout1"
    android:layout_centerHorizontal="true"
    android:layout_marginBottom="56dp"
    android:onClick="setLogin"
    android:text="Login" />
4

9 回答 9

106

如果你在 xml 文件的 Button 标签中这样写: android:onClick="setLogin"那么

这样做:

<?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/button1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/btn"
    android:onClick="onClickBtn" />

</LinearLayout>

在代码部分:

public class StartUpActivity extends Activity 
{
    public void onCreate(Bundle savedInstanceState) 
    {
       super.onCreate(savedInstanceState);
       setContentView(R.layout.main);    
    }

    public void onClickBtn(View v)
    {
        Toast.makeText(this, "Clicked on Button", Toast.LENGTH_LONG).show();
    } 
}

不需要这一切:

 Button button = (Button) findViewById(R.id.button1);
 button.setOnClickListener(new OnClickListener() {

    public void onClick(View v) {
        // TODO Auto-generated method stub

    }
 });

检查一次;

于 2012-04-19T16:02:14.920 回答
14

您需要在布局 XML 和 java 代码中使用相同的方法名称

如果你使用android:onClick="setLogin",那么你需要创建一个同名的方法,setLogin

// Please be noted that you need to add the "View v" parameter
public void setLogin(View v) {

}

建议:
不要通过android:onClick在 XML 中使用标签来混合布局和代码。相反,将 click 方法移动到您的类中,OnClickListener方法如下:

Button button = (Button) findViewById(R.id.button1);
button.setOnClickListener(new OnClickListener() {
  public void onClick(View v) {
    // TODO Auto-generated method stub
  }
 });

只为布局做一个布局,仅此而已。当您需要重构支持多个屏幕时,它将节省您宝贵的时间。

于 2016-11-18T07:50:49.837 回答
7

方法一:

public void onClick(View v) {
          Intent i = new Intent(currentActivity.this, SecondActivity.class);
         startActivty(i);
        }

方法二:

Button button = (Button) findViewById(R.id.mybutton);
 button.setOnClickListener(new OnClickListener() {

    public void onClick(View v) {
         Toast.makeText(this, "Button Clicked", Toast.LENGTH_LONG).show();

    }
 });
于 2015-09-07T10:03:41.863 回答
1

使用这样的东西:

   public void onClick(View v) {
            // TODO Auto-generated method stub
           startActivity(new Intent("com.droidnova.android.splashscreen.MyApp"));
        }
于 2012-04-19T15:22:37.770 回答
1

下面是一些关于如何添加名为 Add 的按钮的示例代码。您应该将变量声明为成员变量,并且成员变量的命名约定是以字母“m”开头。

在类上按 Alt+Enter 以添加缺少的引用。

将此添加到您的 activity_main.xml:

 <Button
        android:id="@+id/buttonAdd"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="ADD"
     />

将此添加到您的 MainActivity.java:

public class MainActivity extends AppCompatActivity {

    Button mButtonAdd; 

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        mButtonAdd = findViewById(R.id.buttonAdd);

        mButtonAdd.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                // do something here
            }
        });
    }
}
于 2020-03-28T20:23:52.343 回答
0

了解按下按钮时您尝试执行的代码会很有帮助。您已将 xml 文件中的 onClick 属性设置为名为 setLogin 的方法。为清楚起见,我将删除此行android:onClick="setLogin"并直接从您的方法内部调用该onClick()方法。

此外,您不能只将显示设置为新的 XML,您需要使用 Intent 启动新活动,这样的方法是合适的

 private void setLogin() {

 Intent i = new Intent(currentActivity.this, newActivity.class);
 startActivty(i);

 }

然后将新的 Activity 设置为具有新的布局。

于 2012-04-19T15:28:18.770 回答
0

有两种解决方案是: -

(1) xml中不要放onClick

(2)删除

button.setOnClickListener(new OnClickListener() {
    public void onClick(View v) {
            // TODO Auto-generated method stub
    }
});

并放

public void setLogin(View v) {
    // Your code here
}
于 2016-11-23T11:25:50.927 回答
0

在您的按钮单击中使用Layout inflater方法。它会将您当前的 .xml 更改为目标 .xml 文件。谷歌的布局充气代码。

于 2019-04-29T11:11:07.697 回答
0

这将为您排序

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

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

    but1.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {

            Intent int1= new Intent(MainActivity.this,xxactivity.class);
            startActivity(int1);
        }
    });
}

您只需要将 xxactivity 修改为您的第二个活动的名称

于 2017-02-02T14:23:55.850 回答