android shape渐近线效果

http://wang-peng1.iteye.com/blog/523869

android画图-----shape的使用

在GradientDrawable1试图中终于把shape学会了,以前总是似懂非懂,
现在终于把里面的东西搞清楚了,同时也挺佩服谷歌的用心,故意设 置一些陷阱吧,不认真对待还真以为没有啥效果呢。

setContentView(R.layout.shape_drawable_1)
shape_drawable_1 代码如下:
android:layout_width="fill_parent"
android:layout_height="wrap_content">

        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
   
android:layout_width="fill_parent"
android:layout_height="50dip"
android:src="@drawable/shape_1" />

android:layout_width="fill_parent"
android:layout_height="50dip"
android:src="@drawable/line" />

android:layout_width="fill_parent"
android:layout_height="50dip"
android:src="@drawable/shape_2" />

android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/line" />

android:layout_width="fill_parent"
android:layout_height="50dip"
android:src="@drawable/shape_3" />

android:layout_width="fill_parent"
android:layout_height="20dip"
android:src="@drawable/line" />

android:layout_width="fill_parent"
android:layout_height="50dip"
android:src="@drawable/shape_4" />

android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/line" />

android:layout_width="fill_parent"
android:layout_height="50dip"

android:src="@drawable/shape_5" />



shape_5的代码:

                android:angle="270"/>
                android:right="7dp" android:bottom="7dp" />
   
   

gradient  产生颜色渐变  android:angle 从哪个角度开始变 貌似只有90的整数倍可以
android:shape="rectangle" 默认的也是长方形


   
                android:dashWidth="3dp" android:dashGap="2dp" />
                android:right="7dp" android:bottom="7dp" />
   


#ff4100ff蓝色#ff4100ff绿色
     实心的 填充里面
    
android:dashWidth="3dp" android:dashGap="2dp" 默认值为0

android:width="2dp" android:color="#FF00ff00"笔的粗细,
       android:dashWidth="5dp" android:dashGap="5dp" 实现- - -这样的效果,dashWidth指的是一条小横线的宽度
       dashGap 指的是 小横线与小横线的间距。 width="2dp" 不能太宽

你可能感兴趣的:(android技术)