zoukankan      html  css  js  c++  java
  • Android背景色渐变效果(shape,gradient) (转)

    Android设置背景色可以通过在res/drawable里定义一个xml,如下:

    [代码]xml代码:

    <?xml version="1.0" encoding="utf-8"?>  
     <shape xmlns:android="http://schemas.android.com/apk/res/android">  
         <gradient  
            android:startColor="#FFF"  
            android:endColor="#000"  
            android:angle="45" />  
    </shape>  
    View Code

    shape是用来定义形状的,gradient定义该形状里面为渐变色填充,startColor起始颜色,endColor结束颜色,angle表示方向角度。当angle=0时,渐变色是从左向右。 然后逆时针方向转,当angle=90时为从下往上。

    实现过程

    第一步:

    res/drawable/background_login.xml

    [代码]xml代码:

    <?xml version="1.0" encoding="utf-8"?>  
    <shape xmlns:android="http://schemas.android.com/apk/res/android">  
         <gradient  
             android:startColor="#FFF"  
             android:endColor="#000"  
             android:angle="45" />  
    </shape>  
    View Code

    第二步:

    res/layout/login.xml

    [代码]xml代码:

     <?xml version="1.0" encoding="utf-8"?>  
     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
         android:orientation="vertical"  
         android:layout_width="fill_parent"  
         android:layout_height="fill_parent"  
         android:background="@drawable/background_login">  
     </LinearLayout>  
    View Code

    第三步:

    [代码]java代码:

     import android.app.Activity;  
     import android.os.Bundle;  
     
     public class LoginActivity extends Activity {  
    
         @Override  
        public void onCreate(Bundle savedInstanceState) {  
             super.onCreate(savedInstanceState);  
            setContentView(R.layout.login);  
         }  
     } 
    View Code

    效果图:

    转自:http://l62s.iteye.com/blog/1659433

  • 相关阅读:
    linux系统swap分区容量扩展
    linux系统lv_root分区容量扩展
    linux系统创建新LV,挂载新分区。
    linux 服务器重启后lvm 变成inactive状态解决
    Linux下使用fdisk扩大分区容量
    go语言 调用飞书群消息机器人接口
    SpringCloud Sentinel 学习笔记
    Git 笔记整理
    SpringBoot 整合 RabbitMQ 学习笔记
    js递归生成树形结构-vue
  • 原文地址:https://www.cnblogs.com/android-for-dh/p/4423495.html
Copyright © 2011-2022 走看看