Android开发实现的圆角按钮、文字阴影按钮效果示例

这篇文章主要介绍了Android开发实现的圆角按钮、文字阴影按钮效果,涉及Android界面布局与属性设置相关操作技巧,需要的朋友可以参考下

本文实例讲述了Android开发实现的圆角按钮、文字阴影按钮效果。分享给大家供大家参考,具体如下:

效果图:

如果要实现圆角图片,并变色须在drawable中配置背景文件如下:


<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
  <item android:state_pressed="true">
    <shape xmlns:android="http://schemas.android.com/apk/res/android"
      android:shape="rectangle">
      <!-- 圆角深红色按钮 -->
      <solid android:color="@color/RED"/>
      <corners android:radius="15dip"/>
    </shape>
  </item>
  <item android:state_pressed="false">
    <shape xmlns:android="http://schemas.android.com/apk/res/android"
      android:shape="rectangle">
      <!-- 圆角红色按钮 -->
      <solid android:color="@color/PURPLE"/>
      <corners android:radius="15dip"/>
    </shape>
  </item>
</selector>

三个按钮整体布局文件:


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  xmlns:tools="http://schemas.android.com/tools"
  android:id="@+id/root"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical">
  <!--文字带阴影的按钮-->
  <!--阴影模糊程度:android:shadowRadius="5"-->
  <!--阴影与文字的距离:android:shadowDx="20"-->
  <!--android:shadowDy="20"-->
  <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="文字带阴影的按钮"
    android:textSize="20pt"
    android:shadowColor="#aa5"
    android:shadowRadius="5"
    android:shadowDx="20"
    android:shadowDy="20"/>
  <!--普通文字按钮-->
  <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="#836622"
    android:text="普通按钮"
    android:textSize="20pt"/>
  <!--带文字的图片按钮-->
  <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/button_selector"
    android:textSize="20px"
    android:text="带文字的按钮"/>
</LinearLayout>

颜色RED和PURPLE的宏定义:


<color name="RED" >#ff0000</color>
<color name="PURPLE" >#9a32cd</color>

更多关于Android相关内容感兴趣的读者可查看本站专题:《Android控件用法总结》、《Android开发入门与进阶教程》、《Android视图View技巧总结》、《Android编程之activity操作技巧总结》、《Android数据库操作技巧总结》及《Android资源操作技巧汇总》

希望本文所述对大家Android程序设计有所帮助。

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

这篇文章主要介绍了Android关于获取时间的记录(小结),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
这篇文章主要介绍了Android关于SeekBar无法点击到最大值问题解决方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
这篇文章主要介绍了Android开发实现布局帧布局霓虹灯效果,涉及Android界面布局、资源文件操作及属性设置等相关技巧,需要的朋友可以参考下
这篇文章主要给大家介绍了关于Flutter调用Android和iOS原生代码的相关资料,文中通过示例代码介绍的非常详细,对大家学习或者使用Flutter具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧
今天小编就为大家分享一篇关于Android中再按一次退出提醒实现的两种方法,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
这篇文章主要介绍了Android开发实现圆形图片功能,涉及Android实现圆形图片的界面布局与CirImageView组件相关使用操作技巧,需要的朋友可以参考下