我有一个具有相对布局的android应用程序,我在其中放置了一个像这样的按钮控件
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/btnCalc"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="708dp"
android:layout_marginLeft="50dp"
android:text="@string/btncalc" />
</RelativeLayout>
为了测试事件,我在这个按钮的点击事件上放了烤面包,就像这样
btncalcu=(Button)findViewById(R.id.btnCalc);
btncalcu.setOnClickListener(new Button.OnClickListener(){
@Override
public void onClick(View v)
{
Toast.makeText(getBaseContext(), "a", Toast.LENGTH_LONG).show();
//calc();
}
});
问题是,当我运行应用程序时,没有错误或任何异常,但也没有显示任何内容Toast
。任何可以猜出问题可能是什么。请帮助!