gpt4 book ai didi

android - onClickListener 中的代码无法执行

转载 作者:行者123 更新时间:2023-11-29 14:09:48 24 4
gpt4 key购买 nike

我在使用以下代码时遇到问题,我创建了两个添加了 onClickListener 的按钮。

对于 Button -- btnAbout,它工作正常,我正在尝试使用另一种方式来处理 btnIntro,而不是使用 findViewById(...) 方法,但是当我单击 btnIntro 时该语句将不会执行。

为什么会这样?

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;

public class TestActivity extends Activity {
private final String TAG = "tag";
private Button btnIntro;
private Button btnAbout;
private View layoutView;
private ViewWrapper wrapper;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

btnAbout = (Button) findViewById(R.id.btnAbout);
if (btnIntro == null) {
LayoutInflater inflator = getLayoutInflater();
layoutView = inflator.inflate(R.layout.main, null, false);
wrapper = new ViewWrapper(layoutView);
layoutView.setTag(wrapper);

} else {
wrapper = (ViewWrapper) layoutView.getTag();
}

btnIntro = wrapper.getButton();
Log.e(TAG, Integer.toHexString(layoutView.getId()) + "");
Log.e(TAG, btnIntro.getText().toString());

btnIntro.setOnClickListener(new OnClickListener() {
{
Log.e(TAG, "static");
}

@Override
public void onClick(View arg0) {
Log.e(TAG, "btnIntro clicked");
Toast.makeText(TestActivity.this, "btnIntro", Toast.LENGTH_SHORT)
.show();
}
});

btnAbout.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
Log.e(TAG, "btnAbout clicked");
Toast.makeText(TestActivity.this, "about", Toast.LENGTH_SHORT).show();
}
});
}

class ViewWrapper {
View base;
Button btn1;

ViewWrapper(View base) {
this.base = base;
}

Button getButton() {
if (btn1 == null) {
btn1 = (Button) base.findViewById(R.id.btnIntro);
Log.e(TAG, btn1.getText().toString());
}
return btn1;
}
}
}

主.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/MAIN_LAYOUT_XML"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="30dip">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Test" />
<Button
android:id="@+id/btnIntro"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="btnIntro" />
<Button
android:id="@+id/btnAbout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="btnAbout" />
</LinearLayout>

最佳答案

问题是您使用不同的内容 View 来获取按钮,一个是在调用 setContentView() 时创建的,第二个是通过调用 inflator.infate() 创建的。因此,您获得的按钮被放置在不同的内容 View 中(仅显示其中一个 - 由 setContentView 创建)。试试看:

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
LayoutInflater inflator = getLayoutInflater();
layoutView = inflator.inflate(R.layout.main, null, false);
setContentView(layoutView);
//..anything you need..
}

关于android - onClickListener 中的代码无法执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4172508/

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