Android幀布局 實現漸變效果

2021-06-19 23:48:58 字數 1787 閱讀 1922

main.xml

xmlns: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背景色漸變。

CSS3 animation實現逐幀動畫效果

css3裡面的animation屬性非常強大,但是自己用的比較少,最近有次面試就剛好被問到了,趁現在有時間就對animation做乙個小總結。同時實現乙個逐幀動畫的demo作為練習 animation屬性一覽 因為animation屬性比較多,然後在w3c上看有點蛋疼,乾脆也做了乙份導圖,以後想檢視...

android中使用shader實現漸變效果

android中可以使用多種shader對影象進行渲染,常見有下 bitmapshader點陣圖 lineargradient線性 radialgradient光束 sweepgradient梯度 composeshader混合 基本步驟是 1.首先建立好要設定的渲染物件shader 2.接著使用p...

android中使用shader實現漸變效果

android中可以使用多種shader對影象進行渲染,常見有下 bitmapshader點陣圖 lineargradient線性 radialgradient光束 sweepgradient梯度 composeshader混合 基本步驟是 1.首先建立好要設定的渲染物件shader 2.接著使用p...