在res目录下的drawable-mdpi建立xml文件shape.xml,如下图所示:

shape.xml

<?xml version="1.0" encoding="UTF-8"?>                                   

 

main.xml

在android:background="@drawable/shape"就使用了shape.xml资源

<?xml version="1.0" encoding="utf-8"?>      

strings.xml

<?xml version="1.0" encoding="utf-8"?>      Hello World, RoundButtonDemoActivity!     RoundButtonDemo 

RoundButtonDemoActivity.java

package com.android.RoundButtonDemo.activity;   import android.app.Activity;  import android.os.Bundle;  import android.view.View;  import android.view.View.OnClickListener;  import android.widget.Button;  import android.widget.Toast;   public class RoundButtonDemoActivity extends Activity {      Button roundButton;      @Override     public void onCreate(Bundle savedInstanceState) {          super.onCreate(savedInstanceState);          setContentView(R.layout.main);                    roundButton=(Button)findViewById(R.id.roundButton);        //使用匿名类注册Button事件          roundButton.setOnClickListener(new OnClickListener()        {                   public void onClick(View v)              {                  Toast.makeText(RoundButtonDemoActivity.this, "你点击了圆角按钮",Toast.LENGTH_LONG).show();              }          });      }  }

效果图:


更多相关文章

  1. Android - 按钮组件详解
  2. Android点击左右按钮实现左右滑动页面切换
  3. Android中设计具有背景图的按钮—ImageButton的焦点及事件处理
  4. Android 中的 BACK 和 HOME 按钮的区别
  5. 毕设---android按钮事件
  6. android gridview按钮边框和定制点击颜色
  7. android 按钮Button单击背景切换

随机推荐

  1. 对话框式activity
  2. 在Android中支持表情
  3. android 竖屏activity跳转横屏activity返
  4. Android ListView在TalkBack下有些项无法
  5. 探讨相对布局的重要特性和属性
  6. Ubuntu 下配置使用Android adb
  7. Android点击其他地方隐藏键盘
  8. Android自定义相机,切换前后摄像头,照相
  9. /system/bin/service分析与使用
  10. Android(安卓)TabHost的使用(一)