美文网首页
安卓碎片代码 计算器代码

安卓碎片代码 计算器代码

作者: 藏歌残余 | 来源:发表于2017-10-14 11:23 被阅读0次

    安卓 button事件添加监听器

    Button button=(Button)findViewById(R.id.button1);

    button.setOnClickListener(new OnClickListener(){

    public void onClick(View view){

    //Intent intent = new Intent(IntentDemoActivity.this, NewActivity.class);

    //      startActivity(intent);

    Intent intent= new Intent(IntentDemoActivity.this,NewActivity.class);

    startActivity(intent);

    }

    });

    xml文件格式

    android:id="@+id/button1"

    android:layout_width="wrap_content"

    android:layout_height="wrap_content"

    android:layout_alignLeft="@+id/textView1"

    android:layout_below="@+id/textView1"

    android:text="Button" />

    相关文章

      网友评论

          本文标题:安卓碎片代码 计算器代码

          本文链接:https://www.haomeiwen.com/subject/wwexuxtx.html