如何创建android布局渐变背景从屏幕中间到底部?

How to create android layout gradient background from middle to bottom of the screen?

如何为所有 android 设备屏幕尺寸创建布局渐变背景,使背景渐变应从屏幕中心开始。请参阅下面的屏幕截图

我的渐变形状xml代码如下my_bg.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <gradient
        android:angle="90"
        android:endColor="#f5fafd"
        android:startColor="#97d7fa" />
</shape>

在我的布局中如果我添加 android:background="@drawable/my_bg" 渐变颜色从顶部开始,它应该从屏幕中心开始(参考我的截图)并且应该支持所有设备尺寸。

如有任何帮助,我们将不胜感激。

my_bg.xml

中使用 android:centerColor