gpt4 book ai didi

android - 在 2 个线性布局之间添加颜色渐变

转载 作者:行者123 更新时间:2023-11-29 15:00:08 26 4
gpt4 key购买 nike

我想为我的应用程序创建一个注册页面,如下所示

enter image description here

我使用了两个垂直方向的线性布局,第一个包含图像,底部一个包含表单。如何制作图像中的渐变?

最佳答案

试试这个:

enter image description here

Gradient drawable :

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:startColor="#5b5cb8df"
android:centerColor="#c501a0e4"
android:endColor="#009FE3"
android:angle="270"/>
</shape>

In xml use like :

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_login"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/company_bg"
android:orientation="vertical" />

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@drawable/background_blur" />

</RelativeLayout>

关于android - 在 2 个线性布局之间添加颜色渐变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47807024/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com