android阴影字体设置

原文:http://www.oschina.net/question/157182_45893

  1. <TextView  android:id="@+id/tvText1"   
  2.     android:layout_width="wrap_content"   
  3.     android:layout_height="wrap_content"   
  4.     android:text="text1"   
  5.     android:textSize="30sp"   
  6.     android:textStyle="bold"   
  7.     android:textColor="#FFFFFF"   
  8.     android:shadowColor="#ff0000ff"  
  9.     android:shadowDx="5"  
  10.     android:shadowDy="5"       
  11.     android:shadowRadius="10"/>  

android:shadowColor 阴影颜色

android:shadowDx 阴影的水平偏移量

android:shadowDy 阴影的垂直偏移量

android:shadowRadius 阴影的范围

  为了统一风格和代码的复用,通常可以把这个样式抽取放入到style.xml文件中

 <TextView
        style="@style/textstyle"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="字体样式"
        android:textSize="30sp"
        android:textStyle="bold" />

 

引用这个样式就可以实现了

源码打印

  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <resources>  
  3.   
  4.     <style name="textstyle">  
  5.           
  6.         <item name="android:shadowColor">#ff0000ff</item>  
  7.         <item name="android:shadowRadius">10</item>  
  8.         <item name="android:shadowDx">5</item>  
  9.         <item name="android:shadowDy">5</item>  
  10.           
  11.     </style>  
  12. </resources>  

 

原文链接:http://blog.csdn.net/liao3841054/article/details/7237386

时间: 2024-11-27 20:18:43

android阴影字体设置的相关文章

android textview字体设置

问题描述 android textview字体设置 我想这样设置.比如说我的textview1里面有5个汉字,第一种效果:将textview1设置成占6个汉字的宽度 第二种效果:textview1的正下面试textview2,textview1有5个汉字,textview2有 4个汉字,可不可以让textview2的汉字和textview1的第一个汉字对齐,让textview2的最后一个汉字和textview1的最后一个汉字对齐.我想要这两种效果,那位大师指点下. 解决方案 可以用android

Android字体设置及Roboto字体使用方法_Android

本文实例讲述了Android字体设置及Roboto字体使用方法.分享给大家供大家参考.具体分析如下: 一.自定义字体 1.android Typeface使用TTF字体文件设置字体 我们可以在程序中放入ttf字体文件,在程序中使用Typeface设置字体. 第一步,在assets目录下新建fonts目录,把ttf字体文件放到这. 第二步,程序中调用: 复制代码 代码如下: AssetManager mgr=getAssets();//得到AssetManager Typeface tf=Type

Android编程实现设置TabHost当中字体的方法_Android

本文实例讲述了Android编程设置TabHost当中字体的方法.分享给大家供大家参考,具体如下: TabWidget tw=this.getTabWidget();//设置TabHost当中的内容的方法 for(int i=0;i<tw.getChildCount();i++){ //设置TabHost字体的相关方法 TextView tv=(TextView)tw.getChildAt(i).findViewById(android.R.id.title); tv.setGravity(BI

Android TextView字体颜色设置方法小结_Android

本文实例总结了Android TextView字体颜色设置方法.分享给大家供大家参考,具体如下: 对于setTextView(int a)这里的a是传进去颜色的值.例如,红色0xff0000是指0xff0000如何直接传入R.color.red是没有办法设置颜色的,只有通过文章中的第三种方法先拿到资源的颜色值再传进去. tv.setTextColor(this.getResources().getColor(R.color.red)); 关键字: android textview color T

Android字体设置及Roboto字体使用方法

本文实例讲述了Android字体设置及Roboto字体使用方法.分享给大家供大家参考.具体分析如下: 一.自定义字体 1.android Typeface使用TTF字体文件设置字体 我们可以在程序中放入ttf字体文件,在程序中使用Typeface设置字体. 第一步,在assets目录下新建fonts目录,把ttf字体文件放到这. 第二步,程序中调用: 复制代码 代码如下:AssetManager mgr=getAssets();//得到AssetManager Typeface tf=Typef

Android TextView字体颜色设置方法小结

本文实例总结了Android TextView字体颜色设置方法.分享给大家供大家参考,具体如下: 对于setTextView(int a)这里的a是传进去颜色的值.例如,红色0xff0000是指0xff0000如何直接传入R.color.red是没有办法设置颜色的,只有通过文章中的第三种方法先拿到资源的颜色值再传进去. tv.setTextColor(this.getResources().getColor(R.color.red)); 关键字: android textview color T

android文字阴影效果设置

[html] view plaincopy <TextView  android:id="@+id/tvText1"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="text1"        android:textSize="30sp&quo

Android中selector设置

问题描述 Android中selector设置 android中怎么在mainactivity中动态设置textview 字体颜色的selector 解决方案 android 设置selector无效android selector下的设置背景属性值android selector下的设置背景属性值 解决方案二: 做不同的xml文件,动态设置backgroundresourceid

Android Studio简单设置(转)

Android Studio 简单设置 界面设置 默认的 Android Studio 为灰色界面,可以选择使用炫酷的黑色界面.Settings --> Appearance --> Theme ,选择 Darcula 主题即可. 字体设置 系统字体设置 如果你的Android Studio界面中,中文显示有问题,或者选择中文目录显示有问题,或者想修改菜单栏的字体,可以这么设置.Settings --> Appearance ,勾选 Override default fonts by (