当前位置:   article > 正文

Android 圆角按钮BUTTON_linearlayout button 圆角 代码

linearlayout button 圆角 代码

button在项目的界面中非常常用,为了界面的美观,我们常常会选用圆角的button,在iOS中按钮的样式可以选择,andriod中需要自己定义,查询了几个大牛的blog,也自己试了下,发现可以实现,现在写出来跟大家分享一下

首先要自定义一个XML文件的button

代码如下:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:shape="rectangle">
  4. <!-- 填充的颜色 -->
  5. <solid android:color="#00FF00" />
  6. <!-- 设置按钮的四个角为弧形 -->
  7. <!-- android:radius 弧形的半径 -->
  8. <corners android:radius="30dip" />
  9. <!-- padding:Button里面的文字与Button边界的间隔 -->
  10. <padding
  11. android:left="10dp"
  12. android:top="10dp"
  13. android:right="10dp"
  14. android:bottom="10dp"
  15. />
  16. </shape>

下面只需在布局文件中引用就可以了:

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:layout_width="fill_parent"
  3. android:layout_height="fill_parent"
  4. android:orientation="vertical" >
  5. <Button
  6. android:id="@+id/button1"
  7. android:layout_marginTop="100dp"
  8. android:layout_marginLeft="50dp"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:background="@drawable/shape"
  12. android:text="Button" />
  13. </LinearLayout>

效果图如下




声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/465055?site
推荐阅读
相关标签
  

闽ICP备14008679号