您的位置:首页 > 移动开发 > Android开发

Android帧布局-实现渐变效果

2013-12-30 20:49 288 查看



main.xml

   
xmlns:tools="http://schemas.android.com/tools"
   
android:orientation="vertical"
   
android:layout_width="match_parent"
   
android:layout_height="match_parent"
   
tools:context=".MainActivity">
        
  android:id="@+id/view01"
     
  android:layout_width="wrap_content"
     
  android:layout_height="wrap_content"
     
  android:width="210px"
     
  android:height="50px"
     
  android:background="#ff0000"/>
        
  android:id="@+id/view02"
     
  android:layout_width="wrap_content"
     
  android:layout_height="wrap_content"
     
  android:width="180px"
     
  android:height="50px"
     
  android:background="#dd0000"/>
        
  android:id="@+id/view03"
     
  android:layout_width="wrap_content"
     
  android:layout_height="wrap_content"
     
  android:width="150px"
     
  android:height="50px"
     
  android:background="#bb0000"/>
        
  android:id="@+id/view04"
     
  android:layout_width="wrap_content"
     
  android:layout_height="wrap_content"
     
  android:width="120px"
     
  android:height="50px"
     
  android:background="#990000"/>
        
  android:id="@+id/view05"
     
  android:layout_width="wrap_content"
     
  android:layout_height="wrap_content"
     
  android:width="90px"
     
  android:height="50px"
     
  android:background="#770000"/>
        
  android:id="@+id/view06"
     
  android:layout_width="wrap_content"
     
  android:layout_height="wrap_content"
     
  android:width="60px"
     
  android:height="50px"
     
  android:background="#550000"/>
        
  android:id="@+id/view07"
     
  android:layout_width="wrap_content"
     
  android:layout_height="wrap_content"
     
  android:width="30px"
     
  android:height="50px"
     
  android:background="#330000"/>

这7个TextView的高度完全相同,而宽度逐渐减少-这样可以保证最先添加的TextView不完全遮挡,而且我们设置了7个TextView背景色渐变。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: