android之字体阴影效果

简介:

 今天刚刚好做了个字体阴影的效果,感觉加上了阴影的效果立体感十足啊!写了个简单的demo与大家分享下!
主要是以下四个属性

  android:shadowColor  阴影的颜色
  android:shadowDx       横向阴影,其值负数是往左,正数是往右
  android:shadowDy       竖直方向,其值负数是往左,正数是往右
  android:shadowRadius   阴影的半径

代码如下:

 


 
 
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  2.     xmlns:tools="http://schemas.android.com/tools" 
  3.     android:layout_width="match_parent" 
  4.     android:layout_height="match_parent"  
  5.     android:orientation="vertical"> 
  6.  
  7.     <TextView 
  8.         android:layout_width="wrap_content" 
  9.         android:layout_height="wrap_content"  
  10.         android:shadowColor="#40000000" 
  11.         android:shadowDx="0" 
  12.         android:shadowDy="8" 
  13.         android:shadowRadius="1" 
  14.         android:layout_margin="20dip" 
  15.         android:text="底部阴影效果"  
  16.         android:textSize="20sp"/> 
  17.      
  18.      <TextView 
  19.         android:layout_width="wrap_content" 
  20.         android:layout_height="wrap_content"  
  21.         android:shadowColor="#40000000" 
  22.         android:shadowDx="0" 
  23.         android:shadowDy="-5"         
  24.         android:shadowRadius="1" 
  25.         android:layout_margin="20dip" 
  26.         android:text="顶部阴影"  
  27.         android:textSize="20sp"/> 
  28.       
  29.       
  30.       <TextView 
  31.         android:layout_width="wrap_content" 
  32.         android:layout_height="wrap_content"  
  33.         android:shadowColor="#40000000" 
  34.         android:shadowDx="-5" 
  35.         android:shadowDy="0" 
  36.         android:shadowRadius="1" 
  37.         android:layout_margin="20dip" 
  38.         android:text="左侧阴影"  
  39.         android:textSize="20sp"/> 
  40.        
  41.        
  42.        <TextView 
  43.         android:layout_width="wrap_content" 
  44.         android:layout_height="wrap_content"  
  45.         android:shadowColor="#40000000" 
  46.         android:shadowDx="5" 
  47.         android:shadowDy="0" 
  48.         android:shadowRadius="1" 
  49.        android:layout_margin="20dip" 
  50.         android:text="右侧阴影"  
  51.         android:textSize="20sp"/> 
  52.  
  53.         
  54.        <TextView 
  55.         android:layout_width="wrap_content" 
  56.         android:layout_height="wrap_content"  
  57.         android:shadowColor="#40000000" 
  58.         android:shadowDx="5" 
  59.         android:shadowDy="5" 
  60.         android:shadowRadius="1" 
  61.        android:layout_margin="20dip" 
  62.         android:text="右下侧阴影"  
  63.         android:textSize="20sp"/> 
  64. </LinearLayout> 

 

 


本文转自xuzw13 51CTO博客,原文链接:http://blog.51cto.com/xuzhiwei/1074785,如需转载请自行联系原作者

 

 

相关文章
|
Android开发
Android 自带的字体库、字体样式
Android 自带的字体库、字体样式
1385 0
Android 自带的字体库、字体样式
|
5月前
|
Android开发
Android面试题经典之如何全局替换App的字体
在Android应用中替换字体有全局和局部方法。全局替换涉及在`Application`的`onCreate`中设置自定义字体,并创建新主题。局部替换则可在布局中通过`ResourcesCompat.getFont()`加载字体文件并应用于`TextView`。
89 2
|
6月前
|
Android开发 开发者
Android UI设计中,Theme定义了Activity的视觉风格,包括颜色、字体、窗口样式等,定义在`styles.xml`。
【6月更文挑战第26天】Android UI设计中,Theme定义了Activity的视觉风格,包括颜色、字体、窗口样式等,定义在`styles.xml`。要更改主题,首先在该文件中创建新主题,如`MyAppTheme`,覆盖所需属性。然后,在`AndroidManifest.xml`中应用主题至应用或特定Activity。运行时切换主题可通过重新设置并重启Activity实现,或使用`setTheme`和`recreate()`方法。这允许开发者定制界面并与品牌指南匹配,或提供多主题选项。
94 6
|
6月前
|
Android开发 开发者
Android UI中的Theme定义了Activity的视觉风格,包括颜色、字体、窗口样式等。要更改主题
【6月更文挑战第25天】Android UI中的Theme定义了Activity的视觉风格,包括颜色、字体、窗口样式等。要更改主题,首先在`styles.xml`中定义新主题,如`MyAppTheme`,然后在`AndroidManifest.xml`中设置`android:theme`。可应用于全局或特定Activity。运行时切换主题需重置Activity,如通过`setTheme()`和`recreate()`方法。这允许开发者定制界面以匹配品牌或用户偏好。
61 2
|
7月前
|
XML 搜索推荐 Java
Android TextView的字体设置
【5月更文挑战第13天】
294 0
|
Java Android开发
Android 中设置EditText输入框提示文本hint的字体大小
Android 中设置EditText输入框提示文本hint的字体大小
339 0
|
Android开发 iOS开发
关于android 字体设置为中等粗细
Android TextView设置字体粗细只有三种状态,textStyle取值只有bold、nomral、italic、客户需求是字体是medium粗细,只因ios是有medium属性,Android被要求要一样;
1443 0
关于android 字体设置为中等粗细
|
XML Android开发 数据格式
Android AlertDialog修改标题、内容、按钮的字体大小和字体颜色
Android AlertDialog修改标题、内容、按钮的字体大小和字体颜色
934 0
Android AlertDialog修改标题、内容、按钮的字体大小和字体颜色
|
Android开发
Android TabLayout修改选中字体大小
Android TabLayout修改选中字体大小
1912 0
Android TabLayout修改选中字体大小
|
IDE 开发工具 Android开发
Android Studio 设置其整个软件平台下的背景和字体风格
Android Studio 设置其整个软件平台下的背景和字体风格
589 0
Android Studio 设置其整个软件平台下的背景和字体风格