码迷,mamicode.com
首页 > 移动开发 > 详细

Android背景渐变色(shape,gradient)

时间:2016-12-18 18:18:21      阅读:331      评论:0      收藏:0      [点我收藏+]

标签:渐变   super   shape   login   rri   state   pre   parent   linear   

Android设置背景色可以通过在res/drawable里定义一个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>

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

实现过程

第一步:

res/drawable/background_login.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>

第二步:

res/layout/login.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>

第三步:

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);
    }
}

 

Android背景渐变色(shape,gradient)

标签:渐变   super   shape   login   rri   state   pre   parent   linear   

原文地址:http://www.cnblogs.com/manyu/p/6194933.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!