gpt4 book ai didi

java - Android 按钮监听器实现

转载 作者:行者123 更新时间:2023-12-02 03:54:14 25 4
gpt4 key购买 nike

嘿大家好,我是 Android 开发新手,对于一个项目,我必须为按钮实现一个监听器。但不幸的是,他无法检测到我认为的按钮。这是java代码:

public class Touch extends AppCompatActivity implements OnTouchListener,OnClickListener {


private button boutonCompteur = null;

@Override
public void onCreate(Bundle savedInstanceState)
{

super.onCreate(savedInstanceState);
setContentView(R.id.Compteur);
boutonCompteur = (button) findViewById(R.id.Compteur);
boutonCompteur.setOnTouchListener(this);
boutonCompteur.setOnClickListener(this);

}

@Override
public boolean onTouch(View v, MotionEvent event)
{
return true;
} }

这是 XML:

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="appuyez ici pour compter votre nombre de touch"
android:id="@+id/Compteur"
android:height="130dp"
android:textColor="#1818e3"
android:textColorHighlight="#cd5555"
android:textSize="22dp"
android:textStyle="italic"
android:layout_marginTop="150dp"
android:layout_alignParentStart="true" />

感谢您的回答:)

最佳答案

我将使用一些视觉帮助来回答您的问题并确定为什么不起作用...看一下下面的图片并注意:

  1. 您的 Activity 需要一个布局,但这与按钮不同
  2. 您需要在布局中找到按钮,即您在xml文件中使用的id,并且与布局不一样!!
  3. 你需要设置正确的监听器来获取 onclick,android 有 OnClickListener界面
  4. 括号之间的单词按钮是一个转换,(android会尝试将某些内容转换为类,因此该类是类按钮,而不是变量的名称)
  5. 您在 onClick 中编写的所有代码都是按下按钮后将执行的代码。

enter image description here

<小时/>

结论

以图像为引用并在代码中实现它。

关于java - Android 按钮监听器实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35635138/

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