gpt4 book ai didi

android - 为什么我按下按钮时会收到此错误消息?

转载 作者:行者123 更新时间:2023-11-29 18:18:52 25 4
gpt4 key购买 nike

我在布局 xml 文件中定义了一个按钮:

<Button
android:id="@+id/my_btn"
android:layout_width="30dip"
android:layout_height="20dip"
android:text="@string/click_me"
android:textSize="10dip"
/>

在我的 Activity 类中,我使用以下代码处理点击事件:

 Button myBtn = (Button) findViewById(R.id.my_btn);
myBtn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
showToast();
}
});

public void showToast() {
Context context = getApplicationContext();
CharSequence text = "button clicked";
int duration = Toast.LENGTH_SHORT;

Toast toast = Toast.makeText(context, text, duration);
toast.show();
}

我运行我的应用程序,当我按下按钮时,我从 Eclipse LogCat 控制台收到以下错误消息: enter image description here

我不明白这个错误信息是什么意思?它提示什么?我哪里错了?

(请用鼠标右键点击下图,然后查看图片)

如果您在查看上图时遇到问题,我将错误消息写在下面:

ActivityThread | enter process activity msg=120

ActivityThread | exit process activity msg=120

WindowManager | waitForLastKey: mFinished=true, mLastWin=null

ViewRoot enter | Dispatching touchevent to com.android.internal.policy.impl.PhoneWindow$DecorView@2fde0c80 touchevent action is 0 X=219.54167 Y=505.3675
...
...

附言我在更改按钮大小和可绘制背景后出现此错误,听起来很奇怪...我也觉得很奇怪。

-----更新--------

布局文件:

<RelativeLayout 
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5dip">

...
<TextView
android:id="@+id/upper_text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textSize="10sp"
android:textStyle="bold"/>

<Button
android:id="@+id/my_btn"
android:layout_toRightOf="@id/upper_text1"
android:layout_alignTop="@id/upper_text2"
android:layout_width="80dip"
android:layout_height="20dip"
android:background="@drawable/btn_bg"
android:text="@string/click_me"
/>
...
...

最佳答案

Toast.makeText(ClassName.this, "button clicked", Toast.LENGTH_SHORT).show();

请尝试一下

关于android - 为什么我按下按钮时会收到此错误消息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6609955/

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