Android控制水平方向字体缩放android:textScaleX

Android控制字体水平方向的缩放属性设置是android:textScaleX,即水平方向放大,备忘小知识点,此处记下。

作为演示,第一行是正常的默认样式,第二行是设置了android:textScaleX的属性为2。

代码:

[html]  view plain  copy
 
  1. xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  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:text="Zhang Phil CSDN" />  
  11.   
  12.     <TextView  
  13.         android:layout_width="wrap_content"  
  14.         android:layout_height="wrap_content"  
  15.         android:textScaleX="2"  
  16.         android:text="Zhang Phil CSDN" />  
  17.   
  18. LinearLayout>  



代码运行结果如图:

Android控制水平方向字体缩放android:textScaleX_第1张图片

你可能感兴趣的:(andrroid)