Button(按钮)

2019-07-22  本文已影响0人  Alan龙马
<Button
        android:id="@+id/btnPush"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="按钮"
        android:onClick="onPushBtnClicked"
        android:textColor="@color/themeRed"
        android:textSize="18sp" />

    //指定onClick属性方式
     public void onPushBtnClicked(View v) {
         Toast.makeText(MainActivity.this, "点击了推送", Toast.LENGTH_SHORT).show();

     }  




        Button btnPush = findViewById(R.id.btnPush);
        //为按钮的单击事件注册监听器
        btnPush.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Toast.makeText(MainActivity.this, "点击了按钮", Toast.LENGTH_SHORT).show();

            }
        });
<ImageButton
        android:id="@+id/imageButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@mipmap/ic_launcher" />
上一篇 下一篇

猜你喜欢

热点阅读