gpt4 book ai didi

java - Button.setOnclickListener(this) 的问题

转载 作者:行者123 更新时间:2023-12-02 01:45:32 33 4
gpt4 key购买 nike

我开始学习 android,我正在尝试进行登录 Activity ,但我的按钮因任何原因不起作用。

我已经在我的类中实现了 view.OnClickListener

这是我的java代码:

public class Login extends AppCompatActivity implements View.OnClickListener{

private Button btn_login, btn_reset;
private EditText et_username, et_pwd;

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

btn_login = (Button) findViewById(R.id.bt_login_login);
btn_login.setOnClickListener(this);

btn_reset = (Button) findViewById(R.id.bt_log_reset);
btn_reset.setOnClickListener(this);

et_username = (EditText) findViewById(R.id.et_log_username);
et_pwd = (EditText) findViewById(R.id.et_log_password);

}

@Override
public void onClick(View v) {

Log.w("test","test");
switch(v.getId()){
case R.id.bt_login_login :
DisplayData();
break;

case R.id.bt_log_reset :
resetData();
break;
}
}

我想知道这是否是由于我的按钮位于这样的树中而引起的:

activity_login.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".Login">

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/txt_username"/>

<EditText
android:id="@+id/et_log_username"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/txt_login"/>

<EditText
android:id="@+id/et_log_password"
android:layout_width="match_parent"
android:inputType="textPassword"
android:hint="@string/pwd"
android:layout_height="wrap_content" />

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center_horizontal|center_vertical"
>
<Button
android:id="@+id/bt_login_login"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/intro_login"/>


<Button
android:id="@+id/bt_log_reset"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/reset"/>

</LinearLayout>

</LinearLayout>

Ps:我的英语可能不好,很抱歉给您带来不便

最佳答案

确保您的 Activity 实现 View.OnClickListener其他一切似乎都很好。

关于java - Button.setOnclickListener(this) 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53728072/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com