gpt4 book ai didi

android - 按钮不响应 OnClick

转载 作者:行者123 更新时间:2023-11-29 16:05:37 26 4
gpt4 key购买 nike

我在我的 XML 布局中设置了一个按钮,然后在我的 Activity 中使用 onClickListener 对其进行设置。单击按钮后,什么也没有发生。我已经设置了一个标签,所以一旦按下按钮,它应该会在日志中显示一条消息。

如有任何帮助,我们将不胜感激!

编辑:每当我删除代码时,我都发现了问题所在

    if (getSupportFragmentManager().findFragmentByTag(TAG) == null) {
final FragmentTransaction ft = getSupportFragmentManager()
.beginTransaction();
ft.add(android.R.id.content, new ImageGridFragment(), TAG);
ft.commit();

}

一切都很完美。我不确定我将如何解决这个问题,任何帮助将不胜感激...

Activity

public class ImageGridActivity extends FragmentActivity {
private static final String TAG = "TEST";

@Override
protected void onCreate(Bundle savedInstanceState) {
setContentView(R.layout.image_grid_fragment);
if (BuildConfig.DEBUG) {
Utils.enableStrictMode();
}
super.onCreate(savedInstanceState);

if (getSupportFragmentManager().findFragmentByTag(TAG) == null) {
final FragmentTransaction ft = getSupportFragmentManager()
.beginTransaction();
ft.add(android.R.id.content, new ImageGridFragment(), TAG);
ft.commit();

}

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

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

Log.d(TAG, "clicked");

}
});

}
}

XML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<GridView
android:id="@+id/gridView"
style="@style/PhotoGridLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:columnWidth="@dimen/image_thumbnail_size"
android:horizontalSpacing="@dimen/image_thumbnail_spacing"
android:numColumns="auto_fit"
android:stretchMode="columnWidth"
android:verticalSpacing="@dimen/image_thumbnail_spacing" >
</GridView>

<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="Button" />

</RelativeLayout>

最佳答案

确保您正在导入 import android.view.View.OnClickListener;

或者您也可以这样尝试:

B1.setOnClickListener(new View.OnClickListener() {

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

Log.d(TAG, "clicked");

}
});

关于android - 按钮不响应 OnClick,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18828684/

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